#cookieConsent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: rgba(0, 124, 87, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-family: Arial, sans-serif;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#cookieConsent:hover {
    opacity: 1;
}

#cookieConsent .cookie-content {
    padding: 20px;
    color: #ffffff;
}

#cookieConsent h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

#cookieConsent p {
    margin: 0 0 20px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
}

#cookieConsent .cookie-buttons {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

#cookieConsent button {
    background-color: #005cd6;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

#cookieConsent button:hover {
    background-color: #0047a3;
}

#cookieConsent .cookie-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#cookieConsent .cookie-links a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 12px;
    transition: opacity 0.3s ease;
}

#cookieConsent .cookie-links a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    #cookieConsent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
