  /* ========== ABOUT SECTION ========== */
  .about-section {
    padding: 60px 6%;
    background: #f9f9f9;
  }

  .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    border-bottom: 2px solid #007b9f;
    display: inline-block;
    margin-bottom: 40px;
    color: #06284e;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 5px;
  }

  .about-content {
    /* Stack content vertically */
    display: block;
    max-width: 900px;
    margin: 0 auto 60px auto;
  }

  .about-img {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .about-img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .about-text {
    width: 100%;
    /* margin-top managed by about-img margin-bottom */
  }

  .about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #007b9f;
    margin-bottom: 15px;
  }

  .about-text p {
    color: #444;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
  }

  /* ========== VISI & MISI ========== */
  .visi-misi {
    max-width: 900px;
    margin: 0 auto;
  }

  .visi-misi h3 {
    font-size: 22px;
    font-weight: 600;
    color: #007b9f;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .visi-misi p,
  .visi-misi ul {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
  }

  .visi-misi ul {
    margin-left: 20px;
    list-style: disc;
  }

  .visi-misi ul li {
    margin-bottom: 15px;
  }

  .visi-misi ul li p {
    margin-top: 5px;
  }

  /* ========== CTA ========== */
  .cta {
    text-align: center;
    margin-top: 50px;
  }

  .cta a {
    background: #007b9f;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
  }

  .cta a:hover {
    background: #005f7c;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 768px) {
    .about-section {
      padding: 40px 4%;
    }

    .section-title {
      font-size: 24px;
      margin-bottom: 30px;
    }

    .about-img img {
      max-height: 250px;
      /* Smaller height on mobile */
    }
  }
