body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f0f4f8;
    color: #333;
}

nav {
    background: #004d7a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav .logo a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

nav .logo a:hover {
    opacity: 0.8;
}

nav .links a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

.hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #e6f7ff;
    padding: 2rem;
}

.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.content {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    padding: 2rem;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.cookie-banner p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.cookie-banner button {
    background: #00aaff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    -webkit-appearance: none;
}

.cookie-banner button:hover {
    background: #0077aa;
}