:root {
    --bg-main: #fcfcfc;
    --text-main: #333333;
    --text-sec: #666666;
    --nav-bg: #1b1b1b;
    --cta-bg: #ffa800;
    --cta-hover: #acfd28;
    --text-light: #fcfcfc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--nav-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-content img {
    height: 50px;
    margin-bottom: 25px;
    animation: pulseLogo 1.5s infinite ease-in-out;
}

.loading-bar-container {
    width: 180px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: var(--cta-bg);
    border-radius: 4px;
    animation: loadingSwipe 1.2s infinite ease-in-out;
}

@keyframes pulseLogo {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes loadingSwipe {
    0% { left: -50%; }
    100% { left: 100%; }
}

h1, h2, h3, h4 {
    color: var(--text-main);
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.section-title-small {
    font-size: 2.5rem;
}

.cta-title {
    font-size: 2rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-sec);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

strong {
    color: var(--text-main);
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--cta-bg);
}

.text-italic {
    font-style: italic;
}

.bg-light-gray {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--cta-bg);
    color: var(--text-light);
    padding: 14px 35px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.mt-auto {
    margin-top: auto !important;
    align-self: flex-start;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-30 {
    margin-bottom: 30px;
}

.section-spacing {
    padding: 80px 20px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.border-radius-16 {
    border-radius: 16px;
}

.custom-radius {
    border-radius: 0 40px 0 40px;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.title-separator {
    width: 120px;
    height: 4px;
    background-color: var(--cta-bg);
    margin: 15px 0 25px 0;
    border-radius: 4px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    display: block;
    transition: transform 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    color: var(--cta-bg);
    font-weight: 600;
    font-size: 14px;
}

.btn-nav {
    background-color: var(--cta-hover) !important;
    color: var(--text-light) !important;
    padding: 10px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease !important;
}

.btn-nav i {
    font-size: 16px;
}

.mobile-designer {
    display: none;
}

.hamburger {
    display: none;
    color: var(--text-light);
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-logo-large {
    max-width: 450px;
    width: 90%;
    display: block;
    margin: 0 auto;
    animation: floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-separator {
    width: 60px;
    height: 3px;
    background-color: var(--cta-bg);
    margin: 25px auto;
    border-radius: 3px;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-location i {
    color: var(--text-light);
}

.page-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero {
    height: auto;
    min-height: 100vh;
    padding: 160px 0 100px 0;
}

.course-hero {
    height: auto;
    min-height: 80vh;
    padding: 160px 0 100px 0;
    display: flex;
    align-items: center;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
    z-index: -2;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.page-hero h1, .page-hero h2 {
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.page-hero h2 {
    font-size: 1.6rem;
    font-weight: 400;
}

.text-light-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.text-light-content p {
    color: var(--text-light);
    font-size: 1.15rem;
}

.text-light-content strong {
    color: #ffffff;
}

.course-subtitle {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light) !important;
    margin-top: -15px;
    margin-bottom: 25px;
}

.back-btn {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.back-btn-white {
    border-color: #ffffff;
    color: #ffffff;
}

.back-btn:hover {
    background-color: var(--text-main);
    color: var(--text-light);
}

.back-btn-white:hover {
    background-color: #ffffff;
    color: var(--text-main);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card h2 {
    font-size: 1.8rem;
    color: var(--cta-bg);
    margin-bottom: 20px;
}

.about-card p {
    font-size: 1.1rem;
}

.cta-banner {
    background-color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
}

.big-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    display: block;
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-style: italic;
}

.bemove-flex-container {
    display: flex;
    gap: 50px;
    align-items: center; 
}

.text-col-flex {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-wrapper {
    margin-top: 30px;
}

.video-col-flex {
    flex: 0 0 400px; 
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-separator {
    width: 150px;
    height: 3px;
    background-color: var(--cta-bg);
    margin: 0 auto;
    border-radius: 3px;
}

.tech-separator.top {
    margin-bottom: 30px;
}

.tech-separator.bottom {
    margin-top: 30px;
}

.tech p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.google-review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.google-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info .name {
    font-weight: 800;
    color: var(--text-main);
    font-size: 15px;
}

.user-info .date {
    font-size: 12px;
    color: #888;
}

.g-icon {
    color: #4285F4;
    font-size: 20px;
}

.google-stars {
    color: #fbbc04;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-sec);
    margin: 0;
}

.courses-section.container {
    max-width: 1400px;
}

.courses-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.course-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.course-card .course-title {
    position: absolute;
    bottom: 20px;
    left: 15px;
    color: var(--text-light);
    z-index: 2;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    margin: 0;
    white-space: nowrap;
}

.course-card .course-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-text {
    text-align: left;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.location-address i {
    color: var(--cta-bg);
    font-size: 1.5rem;
}

.location-map iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-hero-grid {
    grid-template-columns: 1fr;
}

.two-col-grid.align-start {
    align-items: flex-start;
}

.two-col-grid.stretch {
    align-items: stretch;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.contact-hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-text p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.contact-hero-text strong {
    color: #ffffff;
}

.contact-logo {
    max-width: 200px;
    width: 100%;
    display: block;
}

.contact-card {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-links a i {
    color: var(--cta-bg);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.hours-list {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    margin: 0;
    color: var(--text-main);
}

.hours-list p:last-child {
    border-bottom: none;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cta-bg);
}

footer {
    background-color: var(--nav-bg);
    color: var(--text-light);
    padding: 60px 20px 30px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 0 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--text-light);
}

.footer-col p {
    margin-bottom: 8px;
}

.sede-text {
    color: #ffffff;
}

.footer-col p a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-col p i {
    margin-right: 8px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.privacy-link {
    color: #cccccc;
    font-size: 13px;
}

.privacy-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.privacy-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.privacy-group label {
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.designer-link img {
    height: 120px; 
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btt-minimal {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.btt-minimal.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.btt-minimal.white-mode {
    border-color: #ffffff;
    color: #ffffff;
}

@media (min-width: 993px) and (hover: hover) and (pointer: fine) {
    .btn:hover {
        background-color: var(--cta-hover);
        color: var(--text-main);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(172, 253, 40, 0.3);
    }
    .logo:hover img {
        transform: scale(1.05);
    }
    .nav-links li a:hover {
        color: var(--cta-hover);
        text-decoration: underline;
        text-underline-offset: 6px;
    }
    .btn-nav:hover {
        background-color: var(--cta-bg) !important;
        text-decoration: none !important;
        transform: translateY(-2px);
    }
    .btn-nav:hover span {
        text-decoration: none;
    }
    .about-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }
    .video-col-flex:hover .content-video {
        transform: scale(1.03);
    }
    .google-review-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }
    .contact-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }
    .course-card:hover img {
        transform: scale(1.08);
    }
    .course-card:hover .course-title::after {
        width: 100%;
    }
    .course-card:hover .overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    }
    .contact-links a:hover {
        color: var(--cta-hover);
    }
    .footer-col p a:hover {
        color: var(--cta-hover);
    }
    .social-icons a:hover {
        background: var(--cta-hover);
        color: var(--nav-bg);
        transform: translateY(-3px);
    }
    .privacy-link:hover {
        color: var(--cta-hover);
    }
    .designer-link:hover img {
        opacity: 1;
        transform: scale(1.05);
    }
    .btt-minimal:hover {
        background-color: var(--text-main);
        color: var(--text-light);
    }
    .btt-minimal.white-mode:hover {
        background-color: #ffffff;
        color: var(--nav-bg);
    }
}

@media (max-width: 1200px) {
    .course-card .course-title {
        font-size: 0.85rem;
        left: 10px;
    }
}

@media (max-width: 992px) {
    .bemove-flex-container, .two-col-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }

    .flex-end {
        justify-content: center;
    }

    .cta-wrapper {
        text-align: center;
    }

    .video-col-flex {
        order: -1;
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .reviews-grid, .about-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-card .course-title {
        font-size: 1rem;
        left: 15px;
    }
    
    .page-hero, .contact-hero, .course-hero {
        height: auto;
        min-height: 50vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .page-hero .hero-bg {
        background-attachment: scroll;
        background-position: center;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h2 {
        font-size: 1.2rem;
    }
    
    .contact-hero-text {
        text-align: center;
    }
    
    .contact-logo {
        max-width: 180px;
    }

    .back-btn {
        position: relative;
        left: 0;
        top: 0;
        margin: 40px auto 0 auto;
        display: flex;
    }

    .course-subtitle {
        font-size: 1.5rem;
        margin-top: -10px;
    }

    .title-separator {
        margin: 15px auto 25px auto;
    }

    .two-col-grid .text-col {
        text-align: center;
    }

    .order-1-mobile {
        order: 1;
    }
    
    .order-2-mobile {
        order: 2;
    }
}

@media (max-width: 768px) {
    .location-grid, .footer-container {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .location-text {
        text-align: center;
    }
    
    .location-address {
        justify-content: center;
    }

    .courses-section.container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card .course-title {
        font-size: 1.2rem;
        left: 20px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero h2 {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-card .section-title,
    .contact-card .form-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hours-list p {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--nav-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        padding: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        font-size: 20px;
    }

    .mobile-designer {
        display: block;
        position: absolute;
        bottom: 40px;
    }

    .mobile-designer img {
        height: 80px;
        filter: brightness(0) invert(1);
        opacity: 0.8;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    max-width: 800px;
    line-height: 1.5;
}

.cookie-banner p a {
    color: #ff6b00;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn-small {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.cookie-buttons .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cookie-buttons .btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        padding: 20px 50px;
    }
    
    .cookie-banner p {
        margin-bottom: 0;
        text-align: left;
    }
}

#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    display: none;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

#cookie-banner {
    z-index: 9999;
}