/* style/about-us.css */

/* Base styles for the About Us page */
.page-about-us {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 40px; /* Add some padding at the bottom for content visibility */
}

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

.page-about-us__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-about-us__section-title--cta {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.page-about-us__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-about-us__text-block--cta {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-about-us__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-about-us__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-about-us__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-about-us__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.page-about-us__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about-us__description {
  font-size: clamp(1em, 1.5vw, 1.3em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about-us__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about-us__btn-primary,
.page-about-us__btn-secondary,
.page-about-us__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about-us__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-about-us__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-about-us__btn-secondary {
  background-color: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E; /* Main Color */
}

.page-about-us__btn-secondary:hover {
  background-color: #11A84E; /* Main Color */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-about-us__btn-link {
  background-color: transparent;
  color: #2AD16F; /* Brighter green for links */
  border: none;
  padding: 5px 10px;
  font-size: 1em;
  text-decoration: underline;
}

.page-about-us__btn-link:hover {
  color: #57E38D;
}

/* Introduction Section */
.page-about-us__introduction-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-about-us__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Mission & Vision Section */
.page-about-us__mission-vision-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-about-us__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6; /* Text Main */
}

.page-about-us__card-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about-us__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

/* Core Values Section */
.page-about-us__core-values-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-about-us__values-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-about-us__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-about-us__list-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about-us__list-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

/* Team Section */
.page-about-us__team-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

/* FAQ Section */
.page-about-us__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-about-us__faq-list {
  margin-top: 40px;
}

.page-about-us__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about-us__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-about-us__faq-question::-webkit-details-marker {
  display: none;
}

.page-about-us__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about-us__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-about-us__faq-item[open] .page-about-us__faq-toggle {
  content: '−';
}

.page-about-us__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-about-us__faq-answer p {
  margin-top: 0;
  margin-bottom: 15px;
}

.page-about-us__cta-buttons--faq {
  justify-content: flex-start;
  margin-top: 15px;
}

/* CTA Section */
.page-about-us__cta-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
  text-align: center;
  border-top: 1px solid #2E7A4E; /* Border */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about-us__hero-content {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-about-us {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about-us__container {
    padding: 0 15px !important;
  }

  .page-about-us__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-about-us__section-title--cta {
    font-size: 1.8em;
  }

  .page-about-us__hero-section {
    padding-bottom: 40px;
  }

  .page-about-us__hero-content {
    position: static;
    transform: none;
    padding: 20px 15px;
    background-color: rgba(8, 22, 15, 0.8); /* Background with transparency */
    margin-top: -100px; /* Overlap slightly with image */
    border-radius: 0 0 10px 10px;
    max-width: 100%;
  }

  .page-about-us__main-title {
    font-size: 2em !important;
    margin-bottom: 10px;
  }

  .page-about-us__description {
    font-size: 1em !important;
    margin-bottom: 20px;
  }

  .page-about-us__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about-us__btn-primary,
  .page-about-us__btn-secondary,
  .page-about-us__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-about-us__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about-us__card,
  .page-about-us__list-item,
  .page-about-us__faq-item {
    padding: 20px !important;
  }

  .page-about-us__faq-question {
    padding: 15px 20px !important;
    font-size: 1.1em !important;
  }

  .page-about-us__faq-answer {
    padding: 0 20px 15px !important;
  }

  /* Image responsiveness */
  .page-about-us img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-about-us__hero-image-wrapper,
  .page-about-us__introduction-section,
  .page-about-us__mission-vision-section,
  .page-about-us__core-values-section,
  .page-about-us__team-section,
  .page-about-us__faq-section,
  .page-about-us__cta-section,
  .page-about-us__card,
  .page-about-us__list-item,
  .page-about-us__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-about-us__section-title {
    font-size: 1.8em;
  }

  .page-about-us__main-title {
    font-size: 1.8em !important;
  }
}