
    .about-hero {
      background:
        linear-gradient(90deg, rgba(0, 35, 72, .93), rgba(0, 118, 180, .45)),
        url('/assets/frontend/img/hero-water.jpg') center 45% / cover no-repeat;
    }

    .about-hero h1 {
      font-size: clamp(2.4rem, 4.2vw, 4.3rem);
    }

    .about-section {
      padding-top: 58px;
    }

    .about-intro {
      max-width: 860px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .about-intro .eyebrow {
      color: var(--cyan);
      justify-content: center;
    }

    .about-intro .eyebrow:before {
      display: none;
    }

    .about-intro h2 {
      color: var(--navy);
      font-weight: 950;
      text-transform: uppercase;
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      margin-bottom: 14px;
    }

    .about-intro p {
      color: #496b83;
      font-size: 1.08rem;
      line-height: 1.75;
      font-weight: 750;
      margin: 0;
    }

    .about-quote {
      max-width: 880px;
      margin: 0 auto 42px;
      padding: 28px 34px;
      text-align: center;
      color: #fff;
      background:
        radial-gradient(circle at 12% 0%, rgba(125, 227, 255, .38), transparent 32%),
        linear-gradient(135deg, var(--blue), var(--cyan));
      border-radius: 26px;
      box-shadow: var(--shadow2);
    }

    .about-quote i {
      display: block;
      margin-bottom: 10px;
      color: var(--yellow);
      font-size: 2rem;
    }

    .about-quote strong {
      display: block;
      font-size: clamp(1.35rem, 2.2vw, 2rem);
      font-weight: 950;
      line-height: 1.25;
    }

    .about-content-card {
      background: #fff;
      border: 1px solid rgba(0, 174, 239, .12);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .about-content-head {
      padding: 34px 38px;
      background:
        radial-gradient(circle at 10% 0%, rgba(125, 227, 255, .2), transparent 35%),
        linear-gradient(135deg, #fff, #f4fbff);
      border-bottom: 1px solid #e6f0f7;
    }

    .about-content-head h3 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(1.5rem, 2.4vw, 2.1rem);
      font-weight: 950;
      text-transform: uppercase;
    }

    .about-content-body {
      padding: 38px;
    }

    .about-text-block {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid #e6f0f7;
    }

    .about-text-block:first-child {
      padding-top: 0;
    }

    .about-text-block:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .about-text-icon {
      flex: 0 0 auto;
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, var(--cyan), var(--blue2));
      border-radius: 18px;
      font-size: 1.45rem;
      box-shadow: 0 14px 26px rgba(0, 114, 188, .18);
    }

    .about-text-block h4 {
      color: var(--navy);
      font-weight: 950;
      font-size: 1.18rem;
      margin-bottom: 8px;
    }

    .about-text-block p {
      color: #496b83;
      font-size: 1rem;
      line-height: 1.78;
      font-weight: 650;
      margin: 0;
    }

    .about-side-box {
      position: sticky;
      top: 110px;
      display: grid;
      gap: 22px;
    }

    .about-stat-card,
    .about-cta-card {
      background: #fff;
      border: 1px solid rgba(0, 174, 239, .12);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .about-stat-card h3,
    .about-cta-card h3 {
      color: var(--blue);
      font-size: 1.18rem;
      font-weight: 950;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .about-stat-row {
      display: flex;
      gap: 14px;
      padding: 15px 0;
      border-bottom: 1px solid #e6f0f7;
    }

    .about-stat-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .about-stat-row i {
      color: var(--cyan);
      font-size: 1.4rem;
    }

    .about-stat-row strong {
      display: block;
      color: var(--navy);
      font-weight: 950;
      line-height: 1.25;
    }

    .about-stat-row span {
      display: block;
      color: #607b8f;
      font-size: .88rem;
      font-weight: 750;
      margin-top: 2px;
    }

    .about-cta-card {
      color: #fff;
      background:
        radial-gradient(circle at 18% 10%, rgba(125, 227, 255, .36), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    }

    .about-cta-card h3,
    .about-cta-card p {
      color: #fff;
    }

    .about-cta-card p {
      line-height: 1.65;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-values {
      margin-top: 38px;
    }

    .about-value-card {
      height: 100%;
      padding: 26px;
      text-align: center;
      background:
        radial-gradient(circle at 50% 0%, rgba(125, 227, 255, .18), transparent 36%),
        #fff;
      border: 1px solid rgba(0, 174, 239, .12);
      border-radius: 24px;
      box-shadow: var(--shadow);
      transition: .3s ease;
    }

    .about-value-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow2);
    }

    .about-value-card i {
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: #fff;
      background: linear-gradient(135deg, var(--cyan), var(--blue2));
      border-radius: 18px;
      font-size: 1.45rem;
    }

    .about-value-card strong {
      display: block;
      color: var(--navy);
      font-size: 1.05rem;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .about-value-card span {
      color: #607b8f;
      font-size: .92rem;
      font-weight: 700;
      line-height: 1.55;
    }

    @media (max-width: 991px) {
      .about-side-box {
        position: static;
        margin-top: 28px;
      }
    }

    @media (max-width: 575px) {
      .about-section {
        padding-top: 42px;
      }

      .about-content-head,
      .about-content-body,
      .about-stat-card,
      .about-cta-card,
      .about-quote {
        padding: 24px;
      }

      .about-text-block {
        flex-direction: column;
        gap: 14px;
      }
    }
	.about-article{
    max-width:900px;
    margin:0 auto;
    background:#fff;
    padding:50px;
    border-radius:28px;
    box-shadow:var(--shadow);
    border:1px solid rgba(0,174,239,.12);
}

.about-article h2{
    color:var(--navy);
    font-size:2rem;
    font-weight:950;
    margin-bottom:30px;
}

.about-article p{
    color:#496b83;
    font-size:1.08rem;
    line-height:1.95;
    font-weight:650;
    margin-bottom:24px;
}

.about-article p:last-child{
    margin-bottom:0;
}
