.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-color-dark);
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px;
  background-color: var(--bg-color-dark);
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-about__main-title {
  color: var(--text-main);
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(28px, 4vw, 48px);
}

.page-about__lead-text {
  color: var(--text-secondary);
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__section {
  padding: 80px 20px;
  text-align: center;
}

.page-about__section--introduction {
  background-color: var(--bg-color-dark);
  color: var(--text-main);
}

.page-about__section--why-choose {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-about__section--responsibility {
  background-color: var(--bg-color-dark);
  color: var(--text-main);
}

.page-about__section--team {
  background-color: var(--bg-color-card);
  color: var(--text-main);
}

.page-about__section--future {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-about__section--faq {
  background-color: var(--bg-color-dark);
  color: var(--text-main);
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-about__section-title {
  color: var(--gold);
  font-size: 2.8em;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-about__sub-title {
  color: var(--glow);
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about__paragraph {
  color: var(--text-secondary);
  font-size: 1.05em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-about__list-item {
  background-color: rgba(17, 168, 78, 0.1);
  border-left: 5px solid var(--glow);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: var(--text-main);
  font-size: 1.05em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-about__list-item strong {
  color: var(--glow);
}

.page-about__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-about__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.page-about__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.page-about__image--center {
  clear: both;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-about__team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-about__card {
  background-color: var(--bg-color-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(33% - 40px);
  max-width: calc(33% - 40px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--glow);
}

.page-about__team-name {
  color: var(--text-main);
  font-size: 1.5em;
  margin-bottom: 5px;
  font-weight: bold;
}

.page-about__team-role {
  color: var(--glow);
  font-size: 1em;
  margin-bottom: 15px;
}

.page-about__team-description {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-about__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-about__faq-item {
  background-color: var(--bg-color-card);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-about__faq-question:hover {
  background-color: #1a6f44;
}

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

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold);
}

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

.page-about__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: var(--text-secondary);
  background-color: var(--bg-color-card);
  border-top: none;
}

.page-about__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.page-about__faq-link {
  color: var(--glow);
  text-decoration: underline;
}

.page-about__faq-link:hover {
  color: var(--gold);
}

/* Clear floats */
.page-about__section::after {
  content: '';
  display: table;
  clear: both;
}

/* Custom Colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bg-color-card: #11271B;
  --bg-color-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: clamp(26px, 5vw, 42px);
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__sub-title {
    font-size: 1.6em;
  }
  .page-about__image--left,
  .page-about__image--right {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }
  .page-about__card {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .page-about p,
  .page-about li {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-about__main-title {
    font-size: 28px !important;
    margin-bottom: 15px;
  }
  .page-about__lead-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 1.4em;
  }
  .page-about__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto !important;
  }
  .page-about__card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
  }
  .page-about__team-cards {
    gap: 20px;
  }
  .page-about__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-about__faq-toggle {
    font-size: 1.2em;
  }
  .page-about__faq-answer {
    padding: 15px;
  }
  /* Ensure all containers are responsive */
  .page-about__hero-content,
  .page-about__container,
  .page-about__team-cards,
  .page-about__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-about__hero-image-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 24px !important;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__sub-title {
    font-size: 1.2em;
  }
  .page-about__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-about__team-image {
    width: 120px;
    height: 120px;
  }
  .page-about__team-name {
    font-size: 1.3em;
  }
  .page-about__faq-question {
    font-size: 0.95em;
  }
}