/* style/about-us.css */
.page-about-us {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

.page-about-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about-us__dark-section {
  background-color: #017439;
  color: #FFFFFF;
}

.page-about-us__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
  font-weight: bold;
}

.page-about-us__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-about-us__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: inherit;
}

.page-about-us__btn-primary,
.page-about-us__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-about-us__btn-primary {
  background-color: #C30808; /* Register/Login red */
  color: #FFFFFF; /* White text for contrast */
  border: 2px solid #C30808;
}

.page-about-us__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-about-us__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-about-us__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005a2e;
}

.page-about-us__btn-link {
  display: inline-block;
  color: #017439;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.page-about-us__btn-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-about-us__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 600px;
  gap: 40px;
}

.page-about-us__hero-content {
  flex: 1;
  padding-left: 20px;
}

.page-about-us__hero-title {
  font-size: 3.2em;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-about-us__hero-description {
  font-size: 1.3em;
  margin-bottom: 35px;
  color: #FFFFFF;
}

.page-about-us__hero-buttons {
  display: flex;
  gap: 20px;
}

.page-about-us__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.page-about-us__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Mission & Vision Section */
.page-about-us__mission-vision-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-about-us__mission-vision-section .page-about-us__container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-about-us__mission-vision-section .page-about-us__text-content {
  flex: 1;
}

.page-about-us__mission-vision-section .page-about-us__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about-us__mission-vision-section .page-about-us__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Why Choose Us Section */
.page-about-us__why-choose-us-section {
  padding: 80px 0;
  text-align: center;
}

.page-about-us__why-choose-us-section .page-about-us__section-title,
.page-about-us__why-choose-us-section .page-about-us__section-description {
  color: #FFFFFF;
}

.page-about-us__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about-us__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-about-us__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about-us__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-about-us__feature-card .page-about-us__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #017439;
}

.page-about-us__feature-card .page-about-us__card-text {
  font-size: 1em;
  color: #555555;
}

.page-about-us__cta-bottom {
  margin-top: 60px;
}

/* Products Section */
.page-about-us__products-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-about-us__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about-us__product-card {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-us__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.page-about-us__product-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about-us__product-card .page-about-us__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-about-us__product-card .page-about-us__card-title a {
  color: #017439;
  text-decoration: none;
}

.page-about-us__product-card .page-about-us__card-title a:hover {
  text-decoration: underline;
}

.page-about-us__product-card .page-about-us__card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
}

/* Responsibility Section */
.page-about-us__responsibility-section {
  padding: 80px 0;
  background-color: #f0fdf5;
}

.page-about-us__responsibility-section .page-about-us__section-title {
  color: #017439;
}

.page-about-us__responsibility-section .page-about-us__paragraph {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #333333;
}

.page-about-us__responsibility-image-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-about-us__responsibility-image-wrapper .page-about-us__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Team Section */
.page-about-us__team-section {
  padding: 80px 0;
  text-align: center;
}

.page-about-us__team-section .page-about-us__section-title,
.page-about-us__team-section .page-about-us__paragraph {
  color: #FFFFFF;
}

.page-about-us__team-image-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-about-us__team-image-wrapper .page-about-us__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-about-us__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-about-us__faq-section .page-about-us__section-title {
  color: #017439;
  margin-bottom: 50px;
}

.page-about-us__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about-us__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #fefefe;
}

.page-about-us__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-about-us__faq-question:hover {
  background-color: #eeeeee;
}

.page-about-us__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-about-us__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-about-us__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-about-us__faq-item.active .page-about-us__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px;
}

.page-about-us__faq-item.active .page-about-us__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

/* Contact CTA Section */
.page-about-us__contact-cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-about-us__contact-cta-section .page-about-us__section-title,
.page-about-us__contact-cta-section .page-about-us__paragraph {
  color: #FFFFFF;
}

.page-about-us__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about-us__hero-title {
    font-size: 2.8em;
  }
  .page-about-us__hero-description {
    font-size: 1.2em;
  }
  .page-about-us__section-title {
    font-size: 2em;
  }
  .page-about-us__mission-vision-section .page-about-us__container {
    flex-direction: column;
  }
  .page-about-us__hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .page-about-us__hero-content,
  .page-about-us__hero-image-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-about-us__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about-us {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about-us__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: auto;
    padding-bottom: 40px;
  }
  .page-about-us__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-about-us__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-about-us__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about-us__btn-primary, .page-about-us__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about-us__section-title {
    font-size: 1.8em;
  }
  .page-about-us__section-description {
    font-size: 0.95em;
  }
  .page-about-us__container,
  .page-about-us__hero-content,
  .page-about-us__hero-image-wrapper,
  .page-about-us__mission-vision-section .page-about-us__text-content,
  .page-about-us__mission-vision-section .page-about-us__image-wrapper,
  .page-about-us__features-grid,
  .page-about-us__product-grid,
  .page-about-us__faq-list,
  .page-about-us__contact-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-about-us img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure min size */
    min-height: 200px !important;
  }
  .page-about-us__product-image {
    height: auto !important; /* Allow auto height on mobile */
  }
  .page-about-us__contact-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about-us__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-about-us__faq-answer {
    padding: 0 20px;
  }
  .page-about-us__faq-item.active .page-about-us__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-about-us__hero-title {
    font-size: 1.8em;
  }
  .page-about-us__section-title {
    font-size: 1.5em;
  }
  .page-about-us__features-grid,
  .page-about-us__product-grid {
    grid-template-columns: 1fr;
  }
}