    /* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #222;
      background: #fff;
    }
    h1, h2, h3 {
      color: #0d1b2a;
      margin-bottom: 0.5rem;
    }
    p {
      margin-bottom: 1rem;
    }

    /* Container */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 2rem 0;
    }

    /* Top Features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .feature {
      background: #fff;
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .feature img {
      width: 40px;
      margin-bottom: 0.5rem;
    }

    /* About Us */
    .about {
      background-color: rgb(241, 246, 247);
      border-radius: 8px;
      padding: 8px  ;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    .about img {
      width: 100%;
      border-radius: 10px;
    }

    /* Services */
    .services {
      margin-bottom: 3rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    .service {
      background: #fff;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      margin-bottom: 2rem;
    }
    .service ul {
      margin-left: 1rem;
    }

    /* Experience */
    .experience {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    .experience ul {
      margin-left: 1rem;
    }

    /* Team */
    .team {
      margin-bottom: 3rem;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    .team-member {
      background: #fff;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-align: center;
    }
    .team-member img {
      width: auto;
      height: auto;
      border-radius: 50%;
      margin-bottom: 0.5rem;
    }
    .team-member h3 {
      margin-bottom: 0.2rem;
    }
    .team-member p {
      font-size: 0.9rem;
      color: #333232;
    }

    .team-member img {
      height:30%
    }
    /* Responsive */
    @media (max-width: 768px) {
      .about {
        background-color: rgb(168, 135, 92);
        grid-template-columns: 1fr;
        text-align: center;
      }
      .experience {
        grid-template-columns: 1fr;
      }
    }