:root {
    --dutch-orange: #FF4D00;
    --dutch-blue: #1E4D8F;
    --dutch-red: #AE1C28;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

header {
    background: linear-gradient(135deg, var(--dutch-red), var(--dutch-orange));
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.dutch-decoration {
    margin-top: 1rem;
}

.tulip-icon, .shoe-icon {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.casino-operators h2 {
    text-align: center;
    color: var(--dutch-blue);
    margin-bottom: 2rem;
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.operator-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.operator-card:hover {
    transform: translateY(-5px);
}

.operator-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.operator-card h3 {
    color: var(--dutch-blue);
    margin-bottom: 0.5rem;
}

.operator-card p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.visit-button {
    display: inline-block;
    background-color: var(--dutch-orange);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.visit-button:hover {
    background-color: var(--dutch-red);
}

footer {
    background-color: var(--dutch-blue);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .operator-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Privacy and Cookie Policy Pages */
.privacy-content, .cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content-wrapper h2 {
    color: var(--dutch-blue);
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    color: var(--dutch-orange);
    margin: 1.5rem 0 1rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
}

.content-wrapper ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.content-wrapper strong {
    color: var(--dutch-blue);
}

.footer-logos {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
    transition: transform 0.2s;
}

.footer-logo:hover {
    transform: scale(1.08);
} 