* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Marquee Banner - BuildBites Style Implementation */
.marquee-banner {
    background: #212121;
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    position: fixed;
    top: 95px;
    left: 0;
    width: 100%;
    z-index: 999;
    /* UPDATED: Added borders for a cleaner look */
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll-horizontal 25s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.marquee-list {
    display: flex;
    flex-shrink: 0;
}

.marquee-item {
    color: #A3B61C;
    font-size: 20px;
    font-weight: 600;
    padding: 0 50px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-item::before {
    /* UPDATED: Replaced star with a cleaner dot */
    content: "•";
    margin-right: 15px;
    /* UPDATED: Using primaryDark for a more subtle separator */
    color: #8a9918;
    font-size: 24px;
    line-height: 1;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-banner:hover .marquee-track {
    animation-play-state: paused;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #212121;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(163, 182, 28, 0.3);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    gap: 20px;
    position: relative;
}

/* Decorative side elements */
.nav-container::before,
.nav-container::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #A3B61C 0%, #8a9918 100%);
    opacity: 0.3;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.nav-container::before {
    left: 15px;
}

.nav-container::after {
    right: 15px;
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    padding: 5px 20px;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 65px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #A3B61C !important;
    text-decoration: none;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease, font-weight 0.3s ease;
    border-radius: 5px;
}

.nav-link:hover {
    color: #ffffff !important;
    background: rgba(163, 182, 28, 0.2);
}

/* New active class for nav scrollspy */
.active-nav-link {
    font-weight: 700 !important;
    color: #A3B61C !important;
}


/* Main Content */
main {
    margin-top: 0;
}

@media (max-width: 768px) {
    main {
        margin-top: 0;
    }
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    scroll-behavior: smooth;
}

section:not(.hero) {
    padding: 80px 30px;
}

.hero {
    padding: 0;
}

.section-content {
    max-width: 1200px;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0d1b2a;
    padding: 0;
    margin-top: 0;
    padding-top: 155px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    font-weight: 800;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #A3B61C;
    color: #212121;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #A3B61C;
    animation: fadeInUp 0.8s ease 0.4s both;
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cta-button:hover {
    background: #ffffff;
    color: #212121;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(163, 182, 28, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Who We Are Section */
.who-we-are {
    background: #212121;
    color: white;
}

.who-we-are h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #A3B61C;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    position: relative;
    height: 250px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #A3B61C;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(163, 182, 28, 0.2);
}

.card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    transition: opacity 0.3s ease;
    padding: 30px;
}

.card-front h3 {
    font-size: 24px;
    color: #A3B61C;
    text-align: center;
    font-weight: 700;
    margin: 0;
}

.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A3B61C 0%, #8a9917 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
}

.card-back p {
    color: #212121;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.value-card:hover .card-front {
    opacity: 0;
}

.value-card:hover .card-back {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        height: 200px;
    }
}

/* What We Offer Section */
.what-we-offer {
    background: #212121;
    color: white;
    padding: 100px 30px;
}

.what-we-offer h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #A3B61C;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #1a1a1a;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #333333;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #A3B61C;
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: #A3B61C;
    background: #222222;
    box-shadow: 0 20px 50px rgba(163, 182, 28, 0.2);
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    color: #A3B61C;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(163, 182, 28, 0.5));
}

.service-card h3 {
    font-size: 24px;
    color: #A3B61C;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Why It's Important Section */
.why-important {
    background: #1a1a1a;
    color: #ffffff;
    padding: 100px 0;
    min-height: auto !important;
}

.why-important h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #A3B61C;
    text-align: center;
}

.section-content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
    align-items: stretch;
    min-height: 450px;
}

.split-container:not(:last-child) {
    margin-bottom: 0;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8);
}

.split-container:hover .split-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.split-content {
    padding: 60px;
    background: #212121;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.split-container:hover .split-content {
    border-color: #A3B61C;
}

.split-icon {
    margin-bottom: 20px;
}

.split-icon svg {
    color: #A3B61C;
}

.split-content h3 {
    color: #A3B61C;
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 700;
}

.split-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .split-reverse {
        direction: ltr;
    }
    
    .split-image {
        min-height: 300px;
    }
    
    .split-content {
        padding: 40px;
    }
}

/* Process Section */
.our-process {
    background: #212121;
    color: white;
}

.our-process h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #A3B61C;
    text-align: center;
}

/* New class to replace inline style */
.intro-text-process {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #333333;
}

.process-step:hover {
    background: #A3B61C;
    color: white;
    border-color: #A3B61C;
}

.process-step:hover h3,
.process-step:hover p {
    color: white;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #A3B61C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
    margin: 0 auto 20px;
}

.process-step:hover .step-number {
    background: white;
    color: #A3B61C;
}

.process-step h3 {
    color: #A3B61C;
    font-size: 20px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.process-step p {
    color: #cccccc;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* CTA Hero Section */
.cta-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0d1b2a;
}

.cta-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.cta-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.cta-hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.cta-hero h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    font-weight: 800;
}

.cta-hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.cta-tagline {
    font-size: 16px !important;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
    color: #A3B61C !important;
    font-weight: 600 !important;
}

/* Integrated Footer inside CTA */
.integrated-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    padding: 40px 30px;
    color: #A3B61C;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.integrated-footer .footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrated-footer .footer-logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.integrated-footer p {
    margin-bottom: 8px;
    color: #A3B61C;
    font-size: 14px;
}

/* New class to replace inline style */
.footer-privacy-link {
    margin-top: 15px;
    font-size: 13px;
}

.footer-privacy-link a {
    color: #A3B61C;
    text-decoration: none;
}

.footer-privacy-link a:hover {
    text-decoration: underline;
}

.integrated-footer::before,
.integrated-footer::after {
    content: "";
    position: absolute;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #A3B61C 0%, #8a9918 100%);
    opacity: 0.3;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.integrated-footer::before {
    left: 20px;
}

.integrated-footer::after {
    right: 20px;
}

@media (max-width: 768px) {
    .cta-hero {
        min-height: 70vh;
    }
    
    .cta-hero h2 {
        font-size: 36px;
    }
    
    .cta-hero-content p {
        font-size: 18px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #212121;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 2px solid #333333;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #A3B61C;
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-content {
    padding: 60px 50px 50px 50px;
}

.modal-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #A3B61C;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
}

.consultation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #A3B61C;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A3B61C;
    background: #222222;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 16px 40px;
    background: #A3B61C;
    color: #212121;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 182, 28, 0.4);
}

/* New class to replace inline style */
.honeypot {
    display: none;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        padding: 50px 25px 30px 25px;
    }

    .modal-content h2 {
        font-size: 32px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide decorative elements on mobile */
    .nav-container::before,
    .nav-container::after,
    footer::before,
    footer::after {
        display: none;
    }

    nav {
        position: relative;
        /* UPDATED: Pushes nav down below the new fixed marquee */
        margin-top: 45px; 
    }
    
    .marquee-banner {
        /* UPDATED: Make marquee fixed at the top on mobile */
        position: fixed;
        top: 0;
        z-index: 1001; /* Ensure it's on top */
        height: 45px; /* Explicit height */
        padding: 12px 0; /* Reduced padding */
        border-top: none; /* No top border when at top of screen */
    }

    .nav-container {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        order: -1;
        padding: 5px;
    }

    .logo-image {
        height: 55px;
    }

    .integrated-footer .footer-logo-image {
        height: 55px;
    }

    .integrated-footer {
        padding: 30px 20px;
    }

    .integrated-footer::before,
    .integrated-footer::after {
        display: none;
    }

    .nav-left,
    .nav-right {
        flex: none;
        justify-content: center;
    }

    .nav-menu {
        gap: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .cta-hero {
        min-height: 100vh;
        padding: 80px 20px 200px 20px;
    }
    
    .cta-hero-content {
        padding: 20px;
    }

    .cta-hero h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .cta-hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .cta-tagline {
        font-size: 13px !important;
        margin-top: 20px !important;
        line-height: 1.4 !important;
    }
    
    .integrated-footer {
        padding: 30px 20px;
    }
    
    .integrated-footer p {
        font-size: 12px;
        margin: 5px 0;
    }
    
    .footer-privacy-link {
        font-size: 12px;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
    
    .hero {
        /* Adjust hero padding to account for non-fixed nav */
        /* It's already fixed-top on desktop, so this only affects mobile */
        padding-top: 60px;
    }

    .marquee-content {
        font-size: 14px;
    }

    .marquee-item {
        /* UPDATED: Adjusted for smaller fixed bar */
        padding: 0 25px;
        font-size: 14px;
        font-weight: 500;
    }

    /* UPDATED: Add this new rule for the mobile dot */
    .marquee-item::before {
        font-size: 16px;
        margin-right: 10px;
    }

    h2 {
        font-size: 32px !important;
    }

    .importance-grid {
        grid-template-columns: 1fr;
    }

    .importance-item {
        margin-bottom: 20px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        border: none;
        background: #f0f0f0;
        transform: none;
        margin: 0;
    }

    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #A3B61C;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #212121;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #A3B61C;
    color: #212121;
}

.cookie-accept:hover {
    background: #8a9918;
}

.cookie-decline {
    background: transparent;
    color: #A3B61C;
    border: 2px solid #A3B61C;
}

.cookie-decline:hover {
    background: rgba(163, 182, 28, 0.1);
}

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #A3B61C;
    color: #212121;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(163, 182, 28, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    border: none;
    font-size: 24px;
    font-weight: bold;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #8a9918;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}