.page-about {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
  }

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

  .page-about__hero-section {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
  }

  .page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 200px; /* Enforce min size */
  }

  .page-about__hero-content {
    padding: 10px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  .page-about__main-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Use clamp for H1 */
    font-weight: bold;
    color: #F2FFF6;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .page-about__description {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .page-about__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    min-height: 44px; /* Ensure buttons are not too small */
    border: none;
    cursor: pointer;
  }

  .page-about__cta-button:hover {
    opacity: 0.9;
  }

  .page-about__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .page-about__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #F2FFF6;
    margin-bottom: 20px;
  }

  .page-about__introduction-section {
    padding: 60px 0;
  }

  .page-about__mission-vision-section {
    padding: 60px 0;
    background-color: #11271B;
  }

  .page-about__mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .page-about__card {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .page-about__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

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

  .page-about__card-text {
    font-size: 1rem;
    color: #A7D9B8;
    line-height: 1.6;
  }

  .page-about__why-choose-us-section {
    padding: 60px 0;
  }

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

  .page-about__feature-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .page-about__feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #57E38D; /* Glow color for emphasis */
    margin-bottom: 10px;
  }

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

  .page-about__values-section {
    padding: 60px 0;
    background-color: #11271B;
    text-align: center;
  }

  .page-about__values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-about__value-item {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    padding: 20px 25px;
    width: calc(25% - 15px); /* Approx 4 items per row on desktop */
    min-width: 220px; /* Ensure minimum width for value items */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #2E7A4E;
  }

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

  .page-about__value-text {
    font-size: 0.9rem;
    color: #A7D9B8;
    line-height: 1.5;
  }

  .page-about__values-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

  .page-about__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #08160F;
    border-top: 1px solid #1E3A2A; /* Divider */
  }

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

  .page-about__cta-text {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 30px;
  }

  .page-about__cta-link {
    display: inline-block;
    color: #57E38D;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
    min-height: 44px; /* Ensure buttons are not too small */
    line-height: 44px; /* Align text vertically */
    vertical-align: middle;
  }

  .page-about__cta-link:hover {
    color: #2AD16F;
  }

  /* Responsive styles */
  @media (max-width: 849px) {
    .page-about__hero-content {
      padding: 10px 15px 30px;
    }

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

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

    .page-about__section-title {
      font-size: 2rem;
      margin-bottom: 30px;
      padding-top: 30px;
    }

    .page-about__mission-vision-grid {
      grid-template-columns: 1fr;
    }

    .page-about__card-image {
      height: 200px; /* Adjust height for smaller screens */
    }

    .page-about__features-grid {
      grid-template-columns: 1fr;
    }

    .page-about__value-item {
      width: calc(50% - 10px); /* 2 items per row */
    }

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

    .page-about__cta-button,
    .page-about__cta-link {
      display: block;
      margin: 10px auto;
      width: 100%;
      max-width: 280px;
    }

    .page-about__cta-link {
      margin-top: 15px;
    }
  }

  @media (max-width: 768px) {
    /* Mobile image overflow prevention */
    .page-about img {
      max-width: 100%;
      height: auto;
    }
  }

  @media (max-width: 549px) {
    .page-about__section-title {
      font-size: 1.8rem;
    }

    .page-about__card-title {
      font-size: 1.5rem;
    }

    .page-about__feature-title {
      font-size: 1.3rem;
    }

    .page-about__value-item {
      width: 100%; /* 1 item per row */
      padding: 15px 20px;
    }

    .page-about__cta-title {
      font-size: 1.6rem;
    }

    .page-about__cta-text {
      font-size: 0.95rem;
    }
  }