@font-face {
    font-family: 'Roboto';
    src: url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

header {
    background-color: #002776;
    color: white;
    padding: 20px;
    width: 100%;
    text-align: center;
}

header img {
    width: 100px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    margin: 0;
    font-weight: 700;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 600px;
    margin: 20px;
}

.content {
    margin-top: 20px;
    text-align: center;
}

.content img {
    max-width: 300px;
    border-radius: 50%;
    margin: 20px auto;
}

.buttons {
    margin: 20px 0;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.button-primary {
    background: #1351B4 0 0 no-repeat padding-box;
    color: #ffffff;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.button-secondary {
    background-color: #f3b229;
    color: #212121;
}

.button:hover {
    opacity: 0.9;
}

footer {
    background-color: #002776;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
}

footer a {
    color: #f3b229;
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1351B4;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1000px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner button {
    background-color: white;
    color: #1351B4;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-banner button:hover {
    background-color: #eaeaea;
}

@media (max-width: 768px) {
    .button {
        font-size: 1em;
        padding: 12px 24px;
    }

    header img {
        width: 80px;
    }

    header h1 {
        font-size: 1.8em;
    }
}

details {
    margin-top: 15px;
}

details summary {
    cursor: pointer;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    color: #1351B4;
}

details p, details ul {
    margin-top: 5px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
}