body {
    background-color: #001c36;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    
    
}
.cookie-banner {
    background-color: #2263a0;
    border-radius: 15px; 
    padding: 22px;
    display: flex;
    align-items: center; 
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    max-width: 900px; 
    margin: 0 auto;
}
.cookie-img {
    max-width: 200px; 
    height: auto;
    margin-right: 100px; 
}
.cookie-banner h2 {
    margin: 10px 0;
    max-width: 100%; 
    text-align: left; 
}
.buttons {
    margin-top: 10px;
}
.buttons button {
    margin: 5px; 
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-color: #f2f2f2; 
    color: #000; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.buttons button:hover {
    background-color: #2263a0; 
    color: #fff; 
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1); 
}


.close {
    cursor: pointer;
    color: #fff; 
    background-color: #ff4d4d; 
    border-radius: 5px; 
    padding: 10px 15px; 
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease; 
}

.close:hover {
    background-color: #d93636; 
    transform: scale(1.05); 
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2); 
}

.policy-text {
    margin-bottom: 0; 
}
#cookie-modal, #policy-modal {
    display: none;
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background-color: #2263a0; 
    color: #ffffff; 
    border-radius: 10px; 
    padding: 20px; 
    box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
    z-index: 100;
}
#modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    display: none;
    z-index: 99; 
}
#cookie-modal .buttons {
    display: flex; 
    justify-content: space-between; 
}


.footer {

    background-color: rgb(34, 99, 160);
    color: white; 
    text-align: center; 
    padding: 0.5px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: fixed; 
    bottom: 0; 
    width: 100%; 
    margin: 0; 
    border: none; 
    box-sizing: border-box; 
}

/* Media Queries para telas menores */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column; 
        text-align: center; 
        padding: 120px;
    }

    .cookie-img {
        margin: 0 auto 20px auto; 
    }

    .buttons {
        justify-content: center; 
    }

    .footer {
        font-size: 0.9rem; 
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 120px;
    }

    .cookie-img {
        max-width: 100px; 
    }

    .buttons button {
        padding: 8px 12px; 
    }

    .footer {
        font-size: 0.8rem;
    }
}
