
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

    :root {
      --primary: #003366;
      --secondary: #007acc;
      --bg-light: #f9fbff;
      --text: #2c3e50;
      --white: #fff;
    }



    /* body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(to right, #f5f9ff, #e3ecf7);
      color: var(--text);
      line-height: 1.6;
      scroll-behavior: smooth;
    } */

    .container-mission-vision {
      max-width: 1200px;
      margin: auto;
      padding: 50px 20px;
    }

    header h1 {
      font-size: 2.8rem;
      color: var(--primary);
      position: relative;
      display: inline-block;
    }

    header h1::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--secondary);
      margin: 10px auto 0;
      border-radius: 5px;
    }

    .vision-text {
      font-size: 1.3rem;
      text-align: center;
      max-width: 900px;
      margin: 25px auto 40px;
    }

    .illustrations {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-bottom: 60px;
    }

    .illustration-card {
      width: 100%;
      max-width: 360px;
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: fadeIn 1s ease both;
    }

    .illustration-card:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .illustration-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .illustration-caption {
      padding: 15px;
      font-weight: 600;
      color: var(--primary);
      text-align: center;
      font-size: 1.05rem;
    }

    .mission {
      background-color: var(--white);
      padding: 30px;
      margin: 30px 0;
      border-left: 6px solid var(--secondary);
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
    }

    .mission h2 {
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 15px;
    }

    .mission ul {
      list-style: none;
      padding-left: 0;
    }

    .mission ul li {
      margin: 10px 0;
      padding-left: 25px;
      position: relative;
      font-size: 1.05rem;
    }

    .mission ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--secondary);
      font-weight: bold;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.96);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }

      .vision-text {
        font-size: 1.1rem;
      }

      .illustrations {
        flex-direction: column;
        align-items: center;
      }

      .mission {
        padding: 20px;
      }
    }