.header .logo img {
    max-height: 60px;
}

.footer .footer-links ul li:first-child {
    padding-top: 10px;
}
.footer-links ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.inner-banner {
    position: relative;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: rgba(
        0,
        0,
        0,
        0.45
    ); /* change alpha to control darkness (0.0 - 1.0) */
    z-index: 1;
}
.page-title.inner-banner .title-wrapper {
    z-index: 9;
}
.page-title.inner-banner .title-wrapper h1 {
    color: #fff;
    position: relative;
}

/* Main container - fixed at bottom */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 10px 0;
    background: transparent;
    font-family: Arial, sans-serif;
}

/* Inner container - centers the box */
.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Box styling */
.cookie-consent-box {
    background-color: #fff3cd; /* soft yellow */
    border: 1px solid #ffeeba;
    border-radius: 6px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Row layout */
.cookie-consent-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Message text */
.cookie-consent__message {
    color: #212529;
    font-size: 15px;
    margin: 0;
    flex: 1 1 auto;
}

/* Button styles */
.cookie-consent__agree {
    background-color: #ffc107;
    border: 1px solid #ffca2c;
    color: #333;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.cookie-consent__agree:hover {
    background-color: #ffcd39;
}

/* Deny button */
.cookie-consent__deny {
    background-color: #dc3545;
    border: 1px solid #dc3545;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.cookie-consent__deny:hover {
    background-color: #bb2d3b;
}

.blog-details .tags .btn {
    background-color: #3d8f35;
    font-size: 11px;
    border: none;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .header .top-row .logo img {
        max-height: 40px;
    }
    .header .top-row {
        padding-bottom: 0;
    }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
        color: #fff;
    }
    .cookie-consent-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-consent__agree {
        width: 100%;
    }

    .cookie-consent__deny {
        width: 100%;
        margin-top: 10px;
    }

    .header .header-social-links {
        width: 100%;
        text-align: right;
        margin-top: 5px;
    }
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #2986e2;
        padding: 15px;
    }
}

/* Smooth slide-up animation */
.cookie-consent {
    animation: cookieSlideUp 0.4s ease-in-out;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
