/* style/about.css */

/* Base styles for the about page */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: var(--background-color); /* Inherit from shared.css */
  line-height: 1.6;
}

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-about__section:nth-of-type(even) {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__section-title {
  font-size: 2.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-about__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__text-block--note {
  font-style: italic;
  color: #F2C14E; /* Gold */
}

.page-about__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-about__highlight-link {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-about__highlight-link:hover {
  color: #57E38D; /* Glow */
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block; /* Ensures proper spacing and alignment */
}

.page-about__image--center {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: #08160F; /* Background */
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the image, but not covering */
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

/* Buttons */
.page-about__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure text breaks */
  box-sizing: border-box;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E; /* Main Color */
  padding: 10px 25px;
  font-size: 1rem;
}

.page-about__btn-secondary:hover {
  background-color: #11A84E; /* Main Color */
  color: #ffffff;
  border-color: #11A84E;
}

.page-about__btn-large {
  padding: 18px 45px;
  font-size: 1.25rem;
}

/* Mission & Vision Section */
.page-about__mission-vision {
  background-color: #08160F; /* Background */
}

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

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

.page-about__value-heading {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* History Section */
.page-about__history {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-about__milestone-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #F2C14E; /* Gold */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-about__milestone-item strong {
  color: #F2FFF6; /* Text Main */
  font-size: 1.15rem;
}

/* Offerings Section */
.page-about__offerings {
  background-color: #08160F; /* Background */
}

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

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

.page-about__feature-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-about__feature-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-about__promotions {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-about__promo-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__promo-heading {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__promo-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Security Section */
.page-about__security-commitment {
  background-color: #08160F; /* Background */
}

.page-about__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-about__security-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__security-heading {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__security-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Customer Support Section */
.page-about__customer-support {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__support-channels {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-about__support-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__support-heading {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__support-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Why Choose Us Section */
.page-about__why-choose-us {
  background-color: #08160F; /* Background */
}

.page-about__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-about__why-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #57E38D; /* Glow */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-about__why-item strong {
  color: #F2FFF6; /* Text Main */
  font-size: 1.15rem;
}

/* Call to Action Section */
.page-about__call-to-action {
  background: linear-gradient(135deg, #11A84E 0%, #22C768 100%);
  padding: 80px 0;
}

.page-about__container--cta {
  max-width: 800px;
}

.page-about__call-to-action .page-about__section-title {
  color: #ffffff;
}

.page-about__call-to-action .page-about__section-title::after {
  background: #F2C14E;
}

.page-about__call-to-action .page-about__text-block {
  color: #F2FFF6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 2.2rem;
  }
  .page-about__text-block {
    font-size: 1rem;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-about__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .page-about__text-block {
    font-size: 0.95rem;
    padding: 0 15px;
  }
  .page-about__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }
  .page-about__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .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;
    margin-bottom: 10px;
  }
  .page-about__cta-button:last-child {
    margin-bottom: 0;
  }
  .page-about__btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-about__values-grid, .page-about__features-grid, .page-about__promo-list, .page-about__security-list, .page-about__support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__value-item, .page-about__feature-card, .page-about__promo-item, .page-about__security-item, .page-about__support-item, .page-about__milestone-item, .page-about__why-item {
    padding: 20px;
  }
  .page-about__value-heading, .page-about__feature-title, .page-about__promo-heading, .page-about__security-heading, .page-about__support-heading {
    font-size: 1.4rem;
  }

  /* Mobile specific image/video/button rules */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-image-wrapper,
  .page-about__hero-content,
  .page-about__values-grid,
  .page-about__features-grid,
  .page-about__promo-list,
  .page-about__security-list,
  .page-about__support-channels,
  .page-about__milestones-list,
  .page-about__why-list,
  .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;
  }
  .page-about__hero-section {
    padding-top: 10px !important;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .page-about__cta-button, .page-about__btn-primary, .page-about__btn-secondary {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 1.6rem;
  }
  .page-about__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .page-about__hero-content {
    margin-top: -40px;
  }
  .page-about__cta-button {
    font-size: 0.95rem;
  }
  .page-about__btn-large {
    font-size: 1rem;
  }
}