/* style/about.css */

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

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

/* Section styles */
.page-about__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
  letter-spacing: 1px;
  line-height: 1.2;
}

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

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

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #F2FFF6;
}

.page-about__main-title {
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  /* Using clamp for responsive font size, but within H1 limits */
  font-size: clamp(2em, 5vw, 3.5em);
}

.page-about__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  text-align: center;
  box-sizing: border-box;
}

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

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

.page-about__btn-secondary {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-about__btn-secondary:hover {
  background-color: #1E3A2A; /* Divider */
  transform: translateY(-2px);
}

.page-about__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Dark/Light Background Sections */
.page-about__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

.page-about__light-bg {
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  padding: 80px 0;
}

/* Introduction Section */
.page-about__introduction-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

.page-about__image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-about__content-image {
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Mission & Vision Section */
.page-about__mission-vision-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

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

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

.page-about__card:hover {
  transform: translateY(-5px);
}

.page-about__card-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-about__card-dark-bg {
  background-color: #0A4B2C; /* Deep Green */
  border-color: #1E3A2A; /* Divider */
}

/* Values Section */
.page-about__values-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-about__value-item {
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__value-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2AD16F;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__value-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Products & Services Section */
.page-about__products-services-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

.page-about__service-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__service-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-about__service-title {
  font-size: 1.6em;
  color: #2AD16F; /* Main Green */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__service-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 20px;
}

/* Security Section */
.page-about__security-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

.page-about__security-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.page-about__security-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about__security-text-block {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-about__security-features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-about__security-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232AD16F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.96"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-about__security-features li strong {
  color: #F2FFF6;
}

/* Responsibility Section */
.page-about__responsibility-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

.page-about__responsibility-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-about__responsibility-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  color: #A7D9B8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232AD16F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6v6l4 2"></path></svg>') no-repeat 95% 15px;
  background-size: 30px;
}

.page-about__responsibility-list li strong {
  color: #F2FFF6;
}

/* Team Section */
.page-about__team-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

.page-about__team-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-about__faq-section .page-about__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* For details/summary */
}

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

.page-about__faq-qtext {
  flex-grow: 1;
  color: #2AD16F; /* Main Green */
}

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  border-top: 1px solid #1E3A2A; /* Divider */
  margin-top: -1px; /* Overlap border for clean look */
}

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

/* Call to Action Section */
.page-about__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  border-top: 3px solid #2AD16F;
}

.page-about__cta-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__cta-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    padding: 0 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }

  .page-about__description {
    font-size: 1.1em;
  }

  .page-about__section-title {
    font-size: 2em;
  }

  .page-about__content-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .page-about__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-about__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-about__description {
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__text-block {
    font-size: 0.95em;
  }

  .page-about__dark-section,
  .page-about__light-bg {
    padding: 50px 0;
  }

  .page-about__card,
  .page-about__value-item,
  .page-about__service-item {
    padding: 20px;
  }

  .page-about__card-title,
  .page-about__value-title,
  .page-about__service-title {
    font-size: 1.4em;
  }

  .page-about__security-content {
    flex-direction: column;
  }

  .page-about__security-image,
  .page-about__security-text-block {
    flex: 1 1 100%;
    min-width: unset;
    width: 100%;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0;
  }

  .page-about__cta-section .page-about__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-about__cta-title {
    font-size: 2em;
  }

  .page-about__cta-description {
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__image-row,
  .page-about__security-content {
    gap: 15px;
  }

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

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

  .page-about__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-about__faq-question {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.2em, 8vw, 2em);
  }

  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-large {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-about__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }

  .page-about__dark-section,
  .page-about__light-bg {
    padding: 40px 0;
  }

  .page-about__cta-title {
    font-size: 1.8em;
  }
}