/* Brand Colors */
:root {
    --navy: #003366;
    --white: #ffffff;
    --gray: #999999;
    --font-heading: 'Inter', system-ui, Arial, sans-serif;
    --font-body: 'Inter', system-ui, Arial, sans-serif;
    --h1-size: 3rem;
    --h2-size: 60px;
    --h3-size: 48px;
    --h4-size: 40px;
    --h5-size: 32px;
}

/* Bold text styling */
strong, b {
    font-weight: bold;
}

body, p, ul, li, .why-text p, .why-text ul, .why-text li, .hero-content p, .featured-projects p {
    font-family: var(--font-body);
    font-weight: 400;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--navy) !important;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    padding-top: 70px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 0;
}

h1 {
    font-size: var(--h1-size);
    font-weight: 400;
}
h2 {
    font-size: var(--h2-size);
}
h3 {
    font-size: var(--h3-size);
}
h4 {
    font-size: var(--h4-size);
}
h5 {
    font-size: var(--h5-size);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

#header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.header {
    width: 100%;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
    padding: 1rem 0;
}

.header-container {
    width: 100%;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.header .logo,
.header .brand,
.header .main-nav a {
    color: var(--white);
    transition: color 0.3s;
}

.header .main-nav .contact-btn {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}

.header .main-nav .contact-btn:hover {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

#header-container.scrolled,
.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header.scrolled .logo,
.header.scrolled .brand,
.header.scrolled .main-nav a {
    color: var(--navy);
}

.header.scrolled .main-nav .contact-btn {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.header.scrolled .main-nav .contact-btn:hover {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
}

/* Add styles for dropdown menu in scrolled state */
.header.scrolled .dropdown-menu {
    background: var(--white);
}

.header.scrolled .dropdown-menu a {
    color: var(--navy);
}

.header.scrolled .dropdown-menu a:hover {
    background: var(--navy);
    color: var(--white);
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
}
.logo {
    height: 35px;
    margin-right: 1rem;
}
.brand {
    font-size: 0.84rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.main-nav {
    margin-left: 4rem;
}
.main-nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 0.43rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
    font-size: 1.02rem;
}
.main-nav a:hover {
    color: var(--gray);
}

.hero, .bg-video, body, main {
    background: none !important;
}

.hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 100vh;
    overflow: hidden;
}

.hero .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    height: 100%;
    z-index: 1;
}

.hero-content {
    display: block;
    padding-top: 40rem;
    color: #fff;
    text-align: left;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
}

.bg-video {
    z-index: 0 !important;
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    filter: brightness(0.4) contrast(0.8);
}

.hero-content h1, .hero-content p {
    /* color: black !important; */
}
.hero-content h1 {
    margin-top: 0 !important;
    font-size: var(--h1-size);
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 1.5rem 0 2rem 0;
    text-align: left;
    line-height: 1.54;
}
.cta-btn {
    background: var(--white);
    color: var(--navy);
    padding: 0.8rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: var(--gray);
    color: var(--white);
}

.why-choose {
    background: none !important;
    padding: 4rem 0 3rem 0;
    background: #fff !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.why-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: stretch;
}

.why-text, .why-image {
    width: 50%;
    box-sizing: border-box;
}

.why-text {
    flex: 2;
    text-align: left;
    display: block;
    margin: 0;
    padding: 0;
}

.why-text h2 {
    font-size: 30.375px;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.why-text p,
.why-text ul,
.why-text li {
    font-size: 1.404rem;
    font-weight: 400;
}

.why-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
}

.why-image .img-placeholder {
    width: 100%;
    max-width: 787px;
    aspect-ratio: 16 / 9;
    height: auto;
    min-width: 405px;
    min-height: 228px; /* 405 * 9 / 16 */
    background: var(--gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    font-size: 2rem;
}

.featured-projects {
    background: #fff !important;
    padding: 4rem 0 0 0;
    text-align: center;
}
.featured-projects h2 {
    background: var(--navy);
    color: #fff;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    position: relative;
    padding: 0.49em 0 0.49em 2rem;
    border-radius: 0;
    margin-bottom: 0;
    margin-top: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--h2-size);
    letter-spacing: -1px;
    text-align: left;
}
.featured-projects p {
    font-size: 1.08rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 2rem;
}
.project-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.project-gallery .img-placeholder {
    width: 500px;
    height: 200px;
}
.project-gallery .img-placeholder.large {
    width: 700px;
    height: 300px;
}

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}
.footer-col {
    flex: 1;
    min-width: 220px;
    margin-bottom: 2rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.7rem;
}
.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--gray);
}
.footer-social a {
    margin-right: 1rem;
    font-size: 1.3rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 7.5rem;
    color: white;
}
.footer-bottom p {
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    text-decoration: underline;
}

.cta-link {
    color: var(--white);
    text-decoration: underline;
    margin-right: 1.5rem;
    font-weight: 500;
}
.cta-link i {
    margin-left: 0.3rem;
}

@media (max-width: 1200px) {
    body {
        padding-top: 60px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .main-nav {
        display: none;
    }
    .hamburger {
        display: flex !important;
    }
    .mobile-nav {
        top: 70px;
    }
    .mobile-nav[style*="flex"] {
        display: flex !important;
    }
    .main-nav .dropdown-menu a {
        padding: 0.7rem 2rem;
    }
    .mobile-nav .dropdown-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.2);
        padding: 0.5rem 0;
        margin: 0 1.5rem 0.5rem 1.5rem;
    }
    .mobile-nav .dropdown-menu a {
        padding: 0.7rem 2rem 0.7rem 3rem;
        font-size: 0.95rem;
        font-weight: 400;
        opacity: 0.9;
    }
    .mobile-nav .dropdown-menu a::before {
        content: '–';
        margin-right: 0.75rem;
        font-weight: 700;
    }
}

@media (max-width: 900px) {
    /* Remove hamburger/mobile-nav rules here, now handled at 1200px */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }
    .section-hero-desc {
        font-size: 1.15rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .mobile-nav {
        padding: 1rem 0;
    }
    .mobile-nav a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .mobile-nav .contact-btn {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
}

main {
    margin-top: 0;
}

/* Optional: .logo.scrolled for future styling */
.logo.scrolled {
    /* No size change, just for possible future use */
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 120;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.header.scrolled .hamburger span {
    background: var(--navy);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav styles */
.mobile-nav {
    display: none;
    flex-direction: column !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100%;
    background: var(--navy);
    z-index: 999;
    padding: 1.5rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    overflow-y: auto;
    max-height: calc(100vh - 70px);
    box-sizing: border-box;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
    transition: background 0.2s, color 0.2s;
    display: block;
    width: 100%;
    text-align: center;
}
.mobile-nav a:hover, .mobile-nav .contact-btn {
    background: var(--white);
    color: var(--navy);
}
.mobile-nav .contact-btn {
    border: 2px solid var(--white);
    font-weight: bold;
    border-radius: 20px;
    margin-top: 0.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
    text-align: center;
    width: calc(100% - 4rem);
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}
/* .dropdown-toggle::after {
    content: '\25BC';
} */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 210px;
    background: var(--navy);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 0 0 10px 10px;
    z-index: 200;
    flex-direction: column;
    padding: 0.5rem 0;
}
.dropdown-menu a {
    color: var(--white);
    padding: 0.7rem 1.5rem;
    display: block;
    text-decoration: none;
    font-size: 0.98rem;
    transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
    background: var(--white);
    color: var(--navy);
}
@media (max-width: 1200px) {
    .main-nav .dropdown-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        background: var(--navy);
        padding: 0;
    }
    .main-nav .dropdown-menu a {
        padding: 0.7rem 2rem;
    }
    .mobile-nav .dropdown-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        background: var(--navy);
        padding: 0;
    }
    .mobile-nav .dropdown-menu a {
        padding: 0.7rem 2rem;
    }
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    background: #fff !important;
    overscroll-behavior: none;
}

.white-section {
    background: #fff !important;
}

/* Removed the following rule to allow dividers and other elements to use their own background color:
main > section.featured-projects > * {
    background: var(--navy) !important;
}
*/

.section-hero, .section-hero:last-child {
    background: #fff !important;
}

.section-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 0;
}
.section-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.8) contrast(1.1);
    background: #fff !important;
    opacity: 1 !important;
}
.section-hero-overlay {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    background: rgba(0,0,0,0.35);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section-hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.section-hero-desc {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #fff;
}
.section-hero-link {
    display: inline-block;
    color: #fff;
    background: none;
    border-radius: 0;
    padding: 0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 20px;
    transition: color 0.3s;
}
.section-hero-link:hover {
    color: var(--navy);
    background: none;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .section-hero {
        height: 100vh;
        min-height: 220px;
        max-height: none;
    }
    .section-hero-overlay {
        padding: 1.2rem 1.2rem;
        max-width: 98vw;
    }
    .section-hero-title {
        font-size: 1.3rem;
    }
    .section-hero-desc {
        font-size: 1.15rem;
    }
}

.section-hero-overlay--white {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: left;
}
.section-hero-overlay--white * {
    color: #fff !important;
    text-align: left !important;
}
.section-hero-overlay--white .section-hero-text-col {
    max-width: 700px;
    width: 50vw;
    text-align: left;
}
.section-hero-overlay--white .section-hero-empty-col {
    flex: 1;
}

.section-hero-h2 {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.2rem 0;
    text-align: left;
    letter-spacing: -1px;
}

.section-hero-text-col {
    position: relative;
}
.section-hero-label {
    position: absolute;
    top: 6rem;
    left: 2rem;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    z-index: 2;
}

.section-label-navy {
    position: absolute;
    top: 6rem;
    left: 4rem;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    z-index: 2;
}

/* Testimonial Carousel Fixes */
.testimonial-carousel {
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}
.testimonial-track {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.testimonial-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}
.testimonial-dot {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    background: #ccc;
    border: none;
    cursor: pointer;
    margin: 0 4px;
}
.testimonial-dot.active {
    background: #000;
}
.testimonial-carousel-container {
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: auto;
}
.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
}

.industries-section {
    background: #f7f7f7 !important;
    padding: 80px 0 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.industries-header {
    width: 100%;
    padding-left: 2rem;
    margin-bottom: 40px;
}
.industries-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0;
    letter-spacing: -1px;
}
.industries-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    width: 100vw;
    overflow: hidden;
}
.industries-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 2rem;
    width: 100vw;
}
.industries-carousel .industry-img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}
.industry-slide {
    background: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 400px;
    max-width: 400px;
    flex: 0 0 400px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.industry-slide:hover {
    box-shadow: none;
}
.industry-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s;
}
.industry-slide .industry-name,
.industry-slide .industry-link {
    position: absolute;
    left: 20px;
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: none;
}
.industry-slide .industry-name {
    bottom: 38px;
}
.industry-slide .industry-link {
    bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: none;
    margin-top: 0.2em;
    display: inline-block;
}
.industry-link:hover {
    color: #ccc;
    text-decoration: underline;
}
.industries-carousel-btn {
    background: #003366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.industries-carousel-btn:hover {
    background: #0050b3;
}
@media (max-width: 900px) {
    .industries-title {
        font-size: 2.1rem;
    }
    .industry-slide {
        min-width: 260px;
        max-width: 300px;
        flex: 0 0 90vw;
    }
    .industry-img {
        width: 100%;
        height: auto;
        max-width: 300px;
        max-height: 300px;
    }
    .industries-header {
        padding-left: 1rem;
    }
    .industries-carousel {
        padding: 0 1rem;
    }
}

.section-hero, .featured-projects {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: #fff !important;
    background-image: none !important;
}

/* Insert hover rule for scrolled header nav links */
.header.scrolled .main-nav a {
    color: var(--navy);
}
.header.scrolled .main-nav a:hover {
    color: #007bff;
}

.hero-tagline {
    position: absolute;
    bottom: 10rem;
    left: 0;
    width: 70%;
    max-width: 1100px;
    text-align: left;
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    z-index: 2;
    pointer-events: none;
    padding-left: 4rem;
    padding-right: 0;
}
.hero-tagline b {
    font-weight: 700;
    color: #fff;
}
@media (max-width: 900px) {
    .hero-tagline {
        padding-left: 1.5rem;
        width: 90%;
        font-size: 1.1rem;
    }
}
@media (max-width: 600px) {
    .hero-tagline {
        font-size: 1.05rem;
        padding-left: 0.5rem;
        width: 98%;
        bottom: 1.2rem;
    }
}

body.privacy-page {
    background: #003366 !important;
    color: #fff !important;
}

.section-divider-white {
    width: 100vw;
    height: 8px;
    background: #fff !important;
    border: none;
    margin: 0;
    margin-left: -50vw;
    left: 50%;
    position: relative;
    display: block;
    z-index: 10;
}

/* Force white background for all major photo sections on the home page */
.section-hero, .featured-projects {
    background: #fff !important;
    background-image: none !important;
}

.team-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .team-section {
        flex-direction: column;
    }
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #003366;
    color: white;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    font-family: 'Inter', sans-serif;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn.accept {
    background: #fff;
    color: #003366;
}

.cookie-btn.accept:hover {
    background: #f8f9fa;
}

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

.cookie-btn.decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
} 