/* CSS Variables & Reset */
:root {
    --bg-dark: #0a0f1c;
    --bg-darker: #050810;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --primary: #3b82f6;
    /* Modern Blue */
    --accent: #f59e0b;
    /* Gold/Amber */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-text: linear-gradient(135deg, #60a5fa 0%, #f472b6 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    /* Using Outfit for both for a super clean look */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.highlight {
    color: var(--primary);
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(to right, #60a5fa, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    padding: 15px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15), transparent 40%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 1;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-down span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 20px;
    /* Animated Gradient Border Layer */
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #f59e0b);
    background-size: 200% 200%;
    animation: borderGlow 4s ease infinite;
    padding: 3px;
    /* Creates the border width */
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    /* Clip inner content */
    z-index: 1;
}

.image-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
}

/* Inner container/Image logic */
.image-frame img,
.placeholder-img {
    border-radius: 17px;
    /* Inner radius slightly smaller */
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--bg-dark);
    display: block;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.role-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.stat-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: var(--glass-border);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-links-about {
    display: flex;
    gap: 15px;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--bg-card);
    border: var(--glass-border);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Centering content */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    /* Allows clicks to pass through */
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    /* Center horizontally */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.icon-box svg {
    width: 40px;
    height: 40px;
    stroke: url(#gradient-icon);
    /* Will define this ID in HTML if possible or just use current color */
    stroke: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.learn-more {
    color: white;
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.learn-more:hover {
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    filter: brightness(1.1);
}

/* Blog Preview */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    display: block;
    background: var(--bg-darker);
    border-radius: 16px;
    overflow: hidden;
    border: var(--glass-border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.blog-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background: #1e293b;
    /* Fallback */
    display: block;
}

.blog-content {
    padding: 25px;
}

.category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.blog-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: white;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* --- Enhanced Footer --- */
.footer {
    background: #050810;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    /* Fixed: 4 columns to match HTML structure (Brand, Links, Legal, Social) */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
    max-width: 350px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-info p::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.footer h4 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-icons a:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 50px;
    }

    .footer-brand p,
    .contact-info p {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .social-icons {
        align-items: center;
    }

    .social-icons a {
        width: 100%;
        justify-content: center;
    }
}


/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Mobile Responsive */
/* Mobile Responsive */


/* --- MOBILE RESPONSIVE OPTIMIZED --- */


/* --- Exclusive Contact Section (Enhanced) --- */
.contact-section {
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1623 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Background Atmospheric Glow */
.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.contact-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    margin-bottom: 50px;
    text-align: center;
}

.contact-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Modern Glass Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Shine Effect */
.form-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    pointer-events: none;
    animation: shine 8s infinite linear;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateY(-200%);
    }

    100% {
        transform: rotate(45deg) translateY(200%);
    }
}

.modern-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 30px;
    position: relative;
}

.input-label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-left: 5px;
    letter-spacing: 0.5px;
}

/* Premium Inputs */
.input-field {
    width: 100%;
    background: rgba(13, 19, 33, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 16px;
    color: #f8fafc;
    font-size: 1.05rem;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(13, 19, 33, 0.9);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.input-field::placeholder {
    color: rgba(148, 163, 184, 0.4);
}

/* Select Styling */
.select-wrapper {
    position: relative;
}

.select-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s;
}

.input-field:focus+.select-icon {
    color: var(--primary);
    transform: translateY(-50%) rotate(180deg);
}

/* Submit Button */
.bot-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bot-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
    filter: brightness(1.1);
}

.bot-submit:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    /* GLOBAL LAYOUT */
    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
        max-width: 100%;
    }

    .section,
    header,
    footer,
    .hero {
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100%;
    }

    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* HERO: FIX THE HUGE GAP */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding-top: 120px !important;
        padding-bottom: 60px !important;
        display: block !important;
        /* Prevents flex alignment issues */
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* NAVIGATION */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        opacity: 0;
        pointer-events: none;
        display: flex;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hamburger {
        display: block;
    }

    /* GRID RESETS */
    .about-grid,
    .services-grid,
    .blog-grid,
    .footer-grid,
    .stats-grid,
    .modern-form .form-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* FORMS */
    .form-container {
        padding: 30px 20px;
    }

    .input-field {
        width: 100%;
        /* Ensure inputs don't overflow */
    }

    /* FOOTER */
    .footer-grid {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
        flex-direction: row;
        margin-bottom: 20px;
    }

    /* ARTICLE PAGES */
    .article-header {
        padding-top: 100px;
        text-align: center;
    }

    .author-bio {
        flex-direction: column;
    }
}



/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    transition: transform 0.5s ease;
    max-width: 1200px;
    margin: 0 auto;
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cookie-text strong {
    color: white;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept:hover {
    filter: brightness(1.1);
}

.btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-decline:hover {
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        flex-direction: column;
        text-align: center;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}