/* Cookie Consent Banner Styles */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 76, 179, 0.95); /* Using the site's blue color with opacity */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-content p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    flex: 1;
    min-width: 200px;
    color: #fff !important;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    margin-top: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 550;
    cursor: pointer;
    font-family: 'Inter', Helvetica, Arial, Verdana, sans-serif;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.accept-btn {
    background-color: #fff;
    color: #22374d;
}

.accept-btn:hover {
    background-color: #f0f0f0;
}

.decline-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.decline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-consent-buttons {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: flex-end;
    }
}
