/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    margin-right: 15px;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

footer .bg-light {
    background-color: #f8f9fa; /* Using explicit color instead of var */
}

footer h5 {
    margin-bottom: 1.25rem;
    font-weight: 600;
}

footer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

footer hr {
    opacity: 0.2;
    margin: 1.5rem 0;
}

footer .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1050;
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 980px;
    margin: 0 auto;
    padding: 1rem;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner__content p {
    margin: 0;
    line-height: 1.45;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__link {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner__link:hover {
    text-decoration: underline;
}

.cookie-banner__button {
    min-width: 96px;
    border: 0;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    color: #ffffff;
    background: #0056b3;
    font-weight: 700;
}

.cookie-banner__button:hover {
    background: #004494;
}

@media (max-width: 767.98px) {
    .cookie-banner__content {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-banner__actions {
        justify-content: space-between;
    }
}
