/* Cookie Consent Banner Styles */
.cookie-consent {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--body-font);
    line-height: 1.5;
    border: 1px solid var(--light-gray);
}

.cookie-consent p {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 0.95rem;
}

.cookie-consent-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-consent-buttons button {
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--heading-font);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.cookie-accept {
    background-color: var(--secondary);
    color: white;
}

.cookie-accept:hover {
    background-color: #238a7e;
}

.cookie-learn-more {
    background-color: transparent;
    border: 1px solid var(--secondary) !important;
    color: var(--secondary);
}

.cookie-learn-more:hover {
    background-color: rgba(42, 157, 143, 0.1);
}
