﻿body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    header {
      background: #0077b6;
      color: #fff;
      padding: 15px 0;
      text-align: center;
    }
    nav {
      background: #023e8a;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    nav a {
      color: #fff;
      padding: 14px 20px;
      text-decoration: none;
      transition: background 0.3s;
    }
    nav a:hover {
      background: #0096c7;
    }
    .hero {
      background: url('../images/home/slider/slider1.jpeg') no-repeat center center/cover;
      color: white;
      width: min(100% - 56px, 1380px);
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0;
      margin: 26px auto 0;
      border-radius: 0;
      box-shadow: none;
    }
    .hero h1 {
      font-size: 3rem;
      background: transparent;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
    }
    .about-hero.hero {
      width: min(100% - 48px, 1240px) !important;
      min-height: 340px !important;
      height: auto !important;
      margin: 28px auto 0 !important;
      padding: 46px !important;
      justify-content: flex-start;
      text-align: left;
      border-radius: 18px;
      background:
        linear-gradient(90deg, rgba(7, 91, 53, 0.9) 0%, rgba(7, 91, 53, 0.66) 46%, rgba(7, 91, 53, 0.08) 100%),
        url('../images/about/aboutUs.jpg') center 38%/cover !important;
      box-shadow: 0 18px 45px rgba(7, 91, 53, 0.18) !important;
      overflow: hidden;
    }
    .about-hero.hero h1 {
      max-width: 650px;
      margin: 0;
      padding: 0;
      color: #fff;
      background: transparent;
      border-radius: 0;
      font-size: clamp(2.2rem, 5vw, 4.5rem);
      line-height: 1.02;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.36);
    }
    section {
      padding: 50px 20px;
      max-width: 1100px;
      margin: auto;
    }
    section h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #0077b6;
    }
    .about-overview {
      max-width: 980px;
      padding-top: 28px;
    }
    .about {
      margin: 28px auto 0;
    }
    .about img {
      width: 100%;
      min-height: 420px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: none;
    }
    .about-text {
      padding: 30px;
      background: #fff;
      border: 1px solid rgba(7, 91, 53, 0.14);
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    .about-text p {
      margin: 0 0 16px;
      color: #4d5c52;
      font-size: 1.03rem;
    }
    .about-text p:last-child {
      margin-bottom: 0;
    }
    .mission-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      margin-top: 28px;
    }
    .mission-grid article {
      padding: 28px;
      background: linear-gradient(180deg, #fff, #fffaf0);
      border: 1px solid rgba(7, 91, 53, 0.14);
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    .mission-grid h3 {
      margin-top: 0;
      color: var(--brand-green);
    }
    .values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .value {
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(7, 91, 53, 0.14);
      border-radius: 12px;
      text-align: left;
      box-shadow: var(--shadow);
    }
    .value img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 0;
    }
    .value h3 {
      margin: 18px 20px 8px;
      color: var(--brand-green);
    }
    .value p {
      margin: 0 20px 22px;
      color: #5d6b61;
    }
    @media (max-width: 840px) {
      .about-hero.hero {
        width: min(100% - 28px, 1240px) !important;
        min-height: 260px !important;
        padding: 32px 24px !important;
      }
      .mission-grid {
        grid-template-columns: 1fr;
      }
      .about img {
        min-height: 300px;
      }
      .about-text {
        padding: 24px;
      }
    }
    footer {
      background: #023e8a;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 20px;
    }
