    :root {
      --primary: #00247d;
      --accent: #d40000;
      --text: #333;
      --bg: #f8f9fa;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      color: var(--text);
      background: var(--bg);
    }

    header {
      background: white;
      border-bottom: 1px solid #ddd;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 1rem;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      position: relative;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
      text-decoration: none;
    }

    .menu {
      display: flex;
      gap: 1rem;

    }

    .menu a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
padding-top:10px;
    }

    .apply-btn {
      background: var(--accent);
      color: white !important;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      text-decoration: none;
      margin-left: 1rem;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .menu-toggle span {
      height: 3px;
      width: 25px;
      background: var(--text);
      display: block;
      transition: all 0.3s;
    }

    .hero {
      background: linear-gradient(to right, #00247d, #003399);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .section {
      padding: 2rem 1rem;
    }

    .section h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .icon-blocks {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 2rem;
    }

    .icon-block {
      flex: 1 1 200px;
      max-width: 300px;
      background: white;
      border: 1px solid #ddd;
      padding: 1.5rem;
      text-align: center;
      border-radius: 8px;
    }

    .icon-block h3 {
      margin-top: 1rem;
      font-size: 1.2rem;
    }

    .cta {
      text-align: center;
      padding: 3rem 1rem;
      background: var(--primary);
      color: white;
    }

    .cta a {
      margin-top: 1rem;
      display: inline-block;
      background: var(--accent);
      color: white;
      padding: 0.75rem 1.5rem;
      text-decoration: none;
      border-radius: 5px;
    }

    footer {
      padding: 2rem 1rem;
      text-align: center;
      font-size: 0.9rem;
      color: #666;
    }

    footer .footer-menu {
      margin-bottom: 1rem;
    }

    footer .footer-menu a {
      margin: 0 0.5rem;
      color: var(--text);
      text-decoration: none;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .menu {
        flex-direction: column;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        border-bottom: 1px solid #ddd;
        padding: 1rem;
      }

      .menu.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }
