/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    /* Dark Navy to match footer */
    color: #e5e7eb;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    /* Hidden by default, shown by JS */
    border-top: 2px solid #2dd4bf;
    /* Teal accent */
    font-family: 'Inter', sans-serif;
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: #2dd4bf;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #14b8a6;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background-color: #2dd4bf;
    color: #0f172a;
}

.cookie-btn-accept:hover {
    background-color: #14b8a6;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid #64748b;
    color: #cbd5e1;
}

.cookie-btn-decline:hover {
    border-color: #cbd5e1;
    color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}