body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f7f7f7;
      color: #333;
    }

    header {
      background: #203647;
      color: #fff;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    header h1 {
      margin: 0;
    }

    
    .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo-container img {
      height: 40px;
    }


    nav a {
      color: white;
      text-decoration: none;
      margin: 0 10px;
    }

    .btn {
      background: #f7c944;
      color: #000;
      padding: 10px 16px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
    }

    .hero {
      background: linear-gradient(to right, #203647, #265CA4);
      color: white;
      text-align: center;
      padding: 80px 20px;
    }

    .hero h2 {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      gap: 20px;
    }

    .feature-box {
      background: white;
      padding: 20px;
      border-radius: 10px;
      width: 250px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .how {
      background: #eee;
      padding: 50px 20px;
      text-align: center;
    }

    .steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 20px;
    }

    .step {
      max-width: 200px;
    }

    .cta {
      background: #203647;
      color: white;
      text-align: center;
      padding: 50px 20px;
    }

    footer {
      background: #ddd;
      text-align: center;
      padding: 20px;
    }

    @media (max-width: 600px) {
      .features, .steps {
        flex-direction: column;
        align-items: center;
      }
    }

    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #203647;
      color: #fff;
      padding: 16px 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      z-index: 9999;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    }

    .cookie-banner p {
      margin: 0;
      flex: 1 1 300px;
      font-size: 0.9rem;
    }

    .cookie-banner a {
      color: #f7c944;
      text-decoration: underline;
    }

    .cookie-banner-actions {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .cookie-btn {
      padding: 8px 16px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      font-size: 0.875rem;
    }

    .cookie-btn-accept {
      background: #f7c944;
      color: #000;
    }

    .cookie-btn-reject {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .cookie-btn-accept:hover {
      background: #e6b800;
    }

    .cookie-btn-reject:hover {
      background: rgba(255,255,255,0.1);
    }
