    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: #f9f9f9;
      color: #333;
    }
    header {
      background: #002147;
      color: white;
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      position: relative;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: white;
      text-decoration: none;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }
   .nav-links {
      display: flex;
      gap: 1rem;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      background: white;
      height: 3px;
      width: 25px;
      margin: 4px 0;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        background: #002147;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 1rem;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .apply-button {
        margin-top: 1rem;
        margin-left: 0;
      }
    }
    .apply-button {
      background: #f7c600;
      color: #002147;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 4px;
      font-weight: bold;
      text-decoration: none;
    }

    .hero {
      background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 4rem 1rem;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .section {
      padding: 3rem 1rem;
    }
    .section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #002147;
    }

    .icon-block {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      text-align: center;
    }
    .icon-block div {
      flex: 1 1 200px;
      background: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .cta {
      text-align: center;
      background: #002147;
      color: white;
      padding: 3rem 1rem;
    }

    footer {
      background: #001a33;
      color: #ccc;
      padding: 2rem 1rem;
    }
    footer .nav-links a {
      color: #ccc;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 1rem;
      }
      nav {
        flex-direction: column;
        align-items: flex-start;
      }
    }