 body {
      font-family: "Montserrat","Inter" , sans-serif !important;
      margin: 0;
      padding: 0;
      background: #ffffff;
      color: #111;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 0;
    }

    /* ABOUT TITLE */
    .about-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 35px;
    }
.about-img {
  width: 100%;
  height: 380px;      
  object-fit: cover;  
  border-radius: 16px;
}

    .about-header h1 {
      font-size: 40px;
      font-weight: 600;
      margin: 0;
    }

    .about-header p {
      max-width: 500px;
      margin: 0;
      color: #444;
      font-size: 16px;
      font-weight: 500;
    }

    /* IMAGE */
    .about-image img {
      width: 100%;
      border-radius: 16px;
      margin-top: 20px;
    }

    /* STATS ROW */
    .stats {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      text-align: center;
      gap: 20px;
    }

    .stats h2 {
      font-size: 32px;
      margin: 0;
      font-weight: 600;
    }

    .stats p {
      margin: 0;
      color: #555;
      font-size: 16px;
       font-weight: 500;
    }

    /* TWO COLUMN SECTION */
    .two-col {
      margin-top: 50px;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 50px;
    }

    .two-col h2 {
      margin: 0 0 18px 0;
      font-size: 32px;
      font-weight: 600;
    }

    .two-col p {
      color: #555;
      margin-bottom: 20px;
       font-weight: 500;
    }

    .vision-mission h4 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .vision-mission p {
      margin: 6px 0 20px 0;
      color: #555;
      font-size: 16px;
       font-weight: 500;
    }

    .divider {
      width: 100%;
      height: 1px;
      background: #e2e2e2;
      margin: 25px 0;
    }

    /* LARGE IMAGE */
    .large-image img {
      width: 100%;
      border-radius: 16px;
      margin-top: 40px;
      height: 420px;
      object-fit: cover;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .about-header {
        flex-direction: column;
        gap: 15px;
      }

      .stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .two-col {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 500px) {
      .stats {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .about-header h1 {
        font-size: 32px;
      }
    }