/* Base Reset */
body {
  margin: 0;
  font-family: Roboto, sans-serif;
  color: #333;
  background-color: #f7f7f7;
}

/* Header */
.site-header {
  background-color: #333;
  padding: 10px 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Company Intro Section */
.company-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.company-intro {
  padding: 40px 20px;
  background-color: white;
}

.company-logo img {
  max-width: auto;
  height: 140px;
  margin: 0 0;
  padding: 0 auto;
}

.company-description {
  margin-left: 30px;
  flex: 1;
  min-width: 200px;
}

/* Swiper Styles */
.carousel-wrapper {
/*  max-width: 1200px;*/
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 15px;
}

.carousel-section {
  padding: 10px 0;
  background-color: #FFFFFF;
}

.swiper {
  width: 100%;
/*  height: 50vh;*/
  height: auto;
  max-height: 600px;
}

.swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: sepia(0.3);
}

.slide-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  font-size: 1.2rem;
  border-radius: 4px;
}

/* Contact Form */
.contact-form-section {
  padding: 5px 5px;
  background-color: #ffffff;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .company-intro {
    flex-direction: column;
    text-align: center;
  }

  .company-description {
    margin-left: 0;
    margin-top: 20px;
  }

  .swiper {
    height: 600vh;
  }

  .slide-label {
    font-size: 1rem;
  }
}
/* About Page CSS */
.flex-container {
  display: flex;
  justify-content: center;
  background-color: white;
  width: auto;
}

.flex-container > div {
  background-color: #f7f7f7;
  margin: 10px;
  width: auto;
}

.flex-container img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
}
