  body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f8fb;
  }

  #header {
      background-color: #ffffff;
      color: rgb(0, 0, 0);
      padding: 15px 20px;

  }

  #header img {
      height: 30px;
      margin-right: 15px;
  }

  #hero {
      background: linear-gradient(rgba(0, 0, 0, 0.835), rgba(0, 0, 0, 0.701)), url('herobg.jpg') center/cover no-repeat;
      color: white;
      height: 100vh;
      /* text-align: center; */
      display: grid;
      align-items: center;
  }

  #hero h1 {
      font-size: 3rem;
      font-weight: bold;
      text-align: center;
  }

  #hero button {
      background-color: #bbd649;
      color: #fff;
  }

  .download-btn {
      background-color: #004080;

      color: white;
      padding: 10px 25px;
      border-radius: 5px;
      text-decoration: none;
  }

  .download-btn:hover {
      background-color: #065aad;
  }

  .card img {
      height: 180px;
      object-fit: cover;
  }

  footer {
      background: #bbd649;
      color: white;
  }

  /* Custom Section Styles */
  .r-f-dark,
  .r-f-light {
      padding: 40px 0px;
  }

  label {
      text-align: left;
  }

  input:focus {
      box-shadow: none !important;
      border-color: #004080 !important;
      outline: none !important;
  }

  .r-f-dark {
      background-color: #c0d36c;
      color: white;
  }

  .r-f-light {
      background-color: #f9f9f9;
      color: #000;
      padding: 60px 15px;
  }

  .r-f h2,
  .r-f-l h2 {
      text-align: center;
      margin-bottom: 30px;
  }

  .r-f-enroll-sec {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
  }

  .r-f-enroll-sec h3 {
      color: #000;
      font-size: 24px;
      font-weight: 700;
  }

  .r-f-enroll-sec h5 {
      color: #000;
      margin-top: 15px;
      font-weight: 600;
  }

  .r-f-l-card {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
  }

  .r-f-l-card h3 {
      text-align: center;
      color: #000;
      font-size: 26px;
      font-weight: 500;
  }

  .r-f-l-card h2 {
      margin-top: 10px;
      font-weight: 600;
      margin-bottom: 0px;
  }

  .r-f-enroll-sec div,
  .r-f-l-card div {
      background: white;
      padding: 30px 20px;
      border-radius: 10px;
      color: #002c5c;
      width: auto;
  }

  .r-f-l-card div {
      background: #e9eef5;
  }

  .r-team {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
  }

  .r-team h2 {
      margin-bottom: 40px;
  }

  .r-team-sec {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
  }

  .r-team-card img {
      height: 300px;
  }

  .r-team h3 {
      font-size: 24px;
      font-weight: 600;
  }

  .r-team-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 10px;
      max-width: 400px;
  }

  .contact-section {
      background-color: #f9f9f9;
      padding: 20px;
      font-family: 'Arial', sans-serif;
      border-top: 3px solid #bbd649;
      /* Resonance purple */
      text-align: center;
  }

  .contact-section h2 {
      margin-top: 0;
      color: #000000;
      margin-bottom: 20px;
      font-weight: 600;
  }

  .contact-section a {
      color: #3b3b3b;
      text-decoration: none;
  }

  .contact-section a:hover {
      text-decoration: underline;
  }


  @media (max-width: 768px) {

      #hero {

          height: 100% !important;
          padding: 40px 10px;

      }
  }

  @media(max-width:600px) {
      .r-f-enroll-sec {
          display: grid;
          grid-template-columns: repeat(1, 1fr);
          gap: 20px;
      }

      #header h5 {
          display: none;
      }
      .r-f-l-card h3 
        {
            font-size: 22px;
        }
        .r-f-l-card div 
        {
            padding: 20px 15px;
            background-color: #c0d36c;
        }
  }