.footer {
    text-align: left; /* Align text to the left */
    display: flex;
    justify-content: center;
    /*box-shadow: inset 0 2px 4px -2px rgba(38, 43, 49, 0.16), inset 0 1px 4px -1px rgba(38, 43, 49, 0.12);*/
    /*background: #f6f6f6;*/
}

.footer a {
    display: block; /* Make each link take up a full line */
    text-decoration: none; /* Remove underline from links */
    color: #000; /* Set link color to black (you can change this) */
}

.footer a:hover {
    text-decoration: none; /* Add underline on hover */
    color: #c21572; /* Change color on hover */
}

.footer_content{
    padding: 16px; /* Add padding around the content */
    width: 1000px; /* Set a fixed width */
    max-width: 95vw; /* Set a maximum width */
}

.footer_main_links {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    font-size: 13px;
}

.footer_main_links a {
    text-decoration: none;
    color: inherit;
}
/* Full-screen background cover */
.cookie_cover {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark grey transparent background */
    z-index: 10000000; /* Should be just below the cookie banner */
}

/* Cookie banner styles */
.ccb {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2e2e2e;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 10000001;
    flex-direction: column;
    align-items: stretch;
}

.ccb p {
    color: #fff;
    line-height: 1.5;
}

.ccb a {
    color: #ff5890; /* for contrast ratio */
    line-height: 1.5;
}


/* Content section */
.cookie_header_text{
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.ckie_content {
    flex: 1;
    margin-bottom: 15px;
}

.ckie_content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.ckie_content p {
    font-size: 14px;
    line-height: 1.5;
}

/* Buttons section */
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-buttons button {
    width: 200px;
}

/* Button styles */
.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.cookie-btn.accept {
    background-color: #c21572;
    color: white;
    transition: background-color 0.3s;
}
.cookie-btn.accept:hover {
    background-color: #ff0055;
}

.cookie-btn.decline {
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    border: 1px solid #5e5e5e;
}

.footer-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Desktop view */
@media (min-width: 768px) {
    .ccb {
        flex-direction: row;
        align-items: center;
    }

    .ckie_content {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .cookie-buttons {
        flex: 0 0 auto;
    }
}



/* Footer Styles */
.site-footer {
    background-color: #121826;
    color: #fff;
    padding: 60px 20px 30px 20px
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-tagline {
    color: #a0aec0;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}