/* style/about.css */

/* Base styles for the page */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main color on dark background */
  background-color: #08160F; /* Background color */
}

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

.page-about__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Gold color for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: clamp(22px, 3vw, 30px);
  color: #57E38D; /* Glow color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__text-block p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-about__hero-image-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-about__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-about__main-title {
  font-size: clamp(32px, 5vw, 56px); /* Use clamp for H1 */
  color: #F2C14E; /* Gold color */
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.page-about__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  text-align: center;
  box-sizing: border-box;
}

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

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow color */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-about__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Mission Vision Section */
.page-about__mission-vision-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-about__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__card-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #F2C14E; /* Gold color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card p {
  color: #A7D9B8; /* Text Secondary */
}

/* Why Choose Section */
.page-about__why-choose-section {
  padding: 60px 0;
}

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

.page-about__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.8);
}

.page-about__feature-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #57E38D; /* Glow color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}

.page-about__feature-list li {
  background-color: rgba(46, 122, 78, 0.2); /* Deep Green transparent */
  border-left: 3px solid #57E38D;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  color: #F2FFF6;
}

.page-about__feature-list li strong {
  color: #F2C14E;
}

/* Commitment Section */
.page-about__commitment-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

/* Get Started Section */
.page-about__get-started-section {
  padding: 60px 0;
}

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

.page-about__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__step-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #F2C14E; /* Gold color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__step-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #57E38D; /* Glow color */
  padding-right: 10px;
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-about__faq-qtext {
  flex-grow: 1;
}

.page-about__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E;
}

.page-about__faq-answer {
  padding-top: 15px;
  border-top: 1px solid #1E3A2A; /* Divider color */
  margin-top: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-answer p {
  margin-bottom: 0;
}

/* CTA Section */
.page-about__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-about__cta-section .page-about__container {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-about__cta-section .page-about__section-title {
  color: #F2C14E; /* Gold color */
  margin-bottom: 20px;
}

.page-about__cta-section p {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }

  .page-about__hero-content {
    padding: 30px 15px;
  }

  .page-about__section-title {
    margin-bottom: 30px;
  }

  .page-about__card,
  .page-about__feature-card,
  .page-about__step-card {
    padding: 25px;
  }
}

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

  .page-about__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__hero-section {
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-about__main-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .page-about__subtitle {
    font-size: 16px;
  }

  /* Image responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-about__hero-image-container,
  .page-about__feature-card,
  .page-about__card,
  .page-about__step-card,
  .page-about__cta-section .page-about__container,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Button responsive */
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }

  .page-about__hero-content .page-about__btn-primary {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  .page-about__feature-card .page-about__btn-secondary {
    width: calc(100% - 20px); /* Adjust for margin */
  }

  .page-about__feature-card .page-about__btn-secondary:nth-of-type(1) {
    margin-bottom: 10px;
  }

  .page-about__feature-card .page-about__btn-secondary:nth-of-type(2) {
    margin-bottom: 0;
  }

  .page-about__cta-section .page-about__cta-button {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  .page-about__faq-item summary {
    font-size: 16px;
  }

  .page-about__faq-answer {
    font-size: 14px;
  }

  .page-about__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-about__sub-title {
    font-size: clamp(18px, 5vw, 24px);
  }
}

@media (max-width: 480px) {
  .page-about__hero-content {
    padding: 20px 10px;
  }

  .page-about__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-about__subtitle {
    font-size: 14px;
  }

  .page-about__card,
  .page-about__feature-card,
  .page-about__step-card,
  .page-about__faq-item {
    padding: 20px;
  }

  .page-about__card-title,
  .page-about__feature-title,
  .page-about__step-title {
    font-size: clamp(18px, 4.5vw, 24px);
  }
}