/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 50px;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-about__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image a bit */
  background: #11271B; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transform: translateY(-20%); /* Initial position to slide up */
  opacity: 0;
  animation: slideInUp 0.8s forwards ease-out 0.5s;
}

@keyframes slideInUp {
  from {
    transform: translateY(-20%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-about__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-about__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 5;
}

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

.page-about__container--center-text {
  text-align: center;
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #22C768; /* Auxiliary color */
  border-radius: 2px;
}

.page-about__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #F2FFF6;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

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

.page-about__grid-layout--two-cols {
  grid-template-columns: 1fr 1fr;
}

.page-about__grid-layout--three-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-about__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-about__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-about__card-link {
  display: inline-block;
  margin-top: 20px;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-about__card-link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

.page-about__values-list, .page-about__list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about__list-item {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-about__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-size: 1.2rem;
  top: 0;
}

.page-about__list--two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.page-about__image-content {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
  object-fit: cover;
}

.page-about__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
  object-fit: cover;
}

.page-about__feature-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  border: 1px solid #2E7A4E;
}

.page-about__feature-title {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__feature-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-about__feature-description a {
  color: #57E38D;
  text-decoration: none;
}

.page-about__feature-description a:hover {
  text-decoration: underline;
}

.page-about__team-culture .page-about__grid-layout {
  align-items: center;
  text-align: left;
}

.page-about__team-culture .page-about__image-wrapper {
  text-align: center;
}

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

.page-about__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B;
  list-style: none;
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

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

.page-about__cta-final {
  padding-top: 50px;
  padding-bottom: 100px;
}

.page-about__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__hero-image-wrapper {
    height: 500px;
  }
  .page-about__hero-content {
    margin-top: -100px;
  }
  .page-about__grid-layout--two-cols {
    grid-template-columns: 1fr;
  }
  .page-about__team-culture .page-about__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-about__list--two-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__hero-image-wrapper {
    height: 400px;
  }
  .page-about__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-about__main-title {
    font-size: 2rem;
  }
  .page-about__hero-description {
    font-size: 1rem;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    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: 50px 0;
  }
  .page-about__section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 1.6rem;
  }
  .page-about__text-block {
    font-size: 0.95rem;
  }
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-about__card {
    padding: 25px;
  }
  .page-about__card-title {
    font-size: 1.3rem;
  }
  .page-about__card-text {
    font-size: 0.9rem;
  }
  .page-about__list-item {
    font-size: 0.95rem;
  }
  .page-about__image-content,
  .page-about__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px;
  }
  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}