:root {
    --primary-color: #003E6C;
    --background-color: #F8F7F5;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    margin-bottom: 1%;
  }

  body {
    font-family: 'Quicksand', sans-serif;
    background-color: #F8F7F5;
  }

  header {
    background-color: var(--background-color);
    padding: 20px;
    text-align: center;
    position: relative;
  }

  .logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin: 2%;
    text-align: center;
  }

  .menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: #001f36;
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    nav {
      display: none;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    nav.active {
      display: flex;
    }
  }