:root {
    --bg-color: #cacccd;
    /* Slightly darker gray */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --secondary: #8b5cf6;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #cdd9eb;
    /* Fallback */
    background-image:
        /* Polygon Motif (SVG Pattern) */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cpath fill='%2364748b' fill-opacity='0.1' d='M769 229L1037 260.9M927 880L731 737 520 660 307 538 2 464 2 2 1598 2 1598 880 927 880Z'/%3E%3Cpath fill='%23475569' fill-opacity='0.05' d='M927 880L908 678 1106 496 1269 250 1430 112 1598 112 1598 880 927 880Z'/%3E%3Cpath fill='%23334155' fill-opacity='0.05' d='M159 0L241 247 433 349 769 229 1037 260.9 1269 250 1430 112 1598 112 1598 0 159 0Z'/%3E%3Cpath fill='%231e293b' fill-opacity='0.05' d='M159 0L241 247 433 349 769 229 1037 260.9 908 678 1106 496 731 737 520 660 307 538 2 464 2 0 159 0Z'/%3E%3C/svg%3E"),
        /* Background Gradient - Lighter for Contrast */
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }

    100% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 23, 42, 0.85);
    /* Refined Dark glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    /* Subtle primary accent */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: var(--primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    /* Brighter gradient for dark nav */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Specific button in navbar */
.btn-nav {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem !important;
    border-radius: 10px !important;
    margin-left: 1.5rem !important;
    backdrop-filter: blur(4px);
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    background: #ffffff;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.6);
    /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.product-card h3 {
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 80px;
}

.product-link {
    /* Inherits btn-outline style logic */
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    background: #ffffff;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

.product-card:hover .product-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.6);
    /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.5);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar transforms into dynamic drawer on mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin-left: 0 !important;
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
    }

    .nav-links .btn-nav {
        margin-left: 0 !important;
        width: 80%;
    }

    /* Mobile Title Size */
    .article-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem;
    }

    .article-content {
        padding: 2.5rem 1.5rem;
        margin-top: -2rem;
    }
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

/* Floating WhatsApp Button (New Circular Pulse style) */
.wa-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: wa-pulse 2s infinite;
    border: 3px solid rgba(18, 140, 126, 0.3); /* Subtle green border */
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(0.95);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(0.95);
    }
}

.wa-float:hover {
    transform: scale(1.1);
    background: #128c7e; /* Darker green on hover */
    animation: none; /* Stop pulsing on hover */
    box-shadow: 0 10px 25px rgba(18, 140, 126, 0.5);
}

.wa-float img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .wa-float img {
        width: 28px;
        height: 28px;
    }
}

/* Chat Widget */
.chat-widget * {
    box-sizing: border-box;
}

.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
}

.chat-header,
.chat-body {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-widget.active .chat-header {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    width: 350px;
    background: #1e293b;
    /* Matches dark navbar */
    border-radius: 16px 16px 0 0;
    padding: 1rem 1.5rem;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--card-border);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-header-info strong {
    display: block;
    font-size: 1rem;
    color: white;
}

.chat-header-info p {
    margin: 0;
    font-size: 0.75rem;
    color: #10b981;
}

.chat-header-info p::before {
    content: '● ';
}

#close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
}

#close-chat:hover {
    opacity: 1;
}

.chat-widget.active .chat-body {
    display: block;
    opacity: 1;
    transform: translateY(0);
    width: 350px;
    height: 450px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-top: none;
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.chat-widget.active #chat-area {
    display: flex;
    flex-direction: column;
    padding: 0;
    height: 100%;
}

/* When showing chat-area, override chat-body padding */
.chat-widget.active .chat-body:has(#chat-area) {
    padding: 0;
    overflow: hidden;
}

.chat-widget.active .chat-toggle-btn {
    display: none;
}

/* Custom Scrollbar for Chat */
.chat-body::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track,
.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.chat-body::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover,
.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Pre-chat form styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: #f1f5f9;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary);
}

/* Chat area styles */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 345px;
}

.msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.msg-visitor {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 2px;
}

.msg-admin {
    align-self: flex-start;
    background: #f1f5f9;
    color: var(--text-main);
    border-bottom-left-radius: 2px;
    border: 1px solid var(--card-border);
}

.chat-input-area {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    border-radius: 0 0 16px 16px;
    flex-shrink: 0;
    min-width: 0;
}

.chat-input-area input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: var(--text-main);
    outline: none;
    font-family: inherit;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.chat-input-area button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}


/* PDF Tools Page Styles */
.tools-hero {
    padding: 100px 2rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.tools-grid {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    margin-top: -3.5rem !important;
    position: relative;
    z-index: 10;
    overflow-x: auto;
    padding: 1.5rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.tools-grid::-webkit-scrollbar {
    display: none;
}

.tool-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 140px;
    flex: 0 0 auto;
}

.tool-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-color: var(--primary);
}

.tool-card.active {
    border: 2px solid var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.tool-icon {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
    display: block;
}

.tool-card h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    color: var(--text-main);
}


/* Upload Section */
.upload-section {
    max-width: 800px;
    margin: 4rem auto;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--card-border);
}

.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: #f8fafc;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.upload-zone i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.upload-zone h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.upload-zone p {
    color: var(--text-muted);
}

.upload-status {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 12px;
    display: none;
}

.progress-container {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s;
}

.result-section {
    margin-top: 2rem;
    text-align: center;
    display: none;
}

.btn-download {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .tools-hero {
        padding: 100px 1rem 3rem;
    }
    .tools-grid {
        margin-top: -2rem !important;
        padding: 1rem !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    .tool-card {
        flex-direction: row !important;
        width: 100% !important;
        max-width: 350px !important;
        padding: 0.75rem 1.25rem !important;
        justify-content: flex-start !important;
        gap: 1.25rem !important;
        border-radius: 12px !important;
    }
    .tool-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
    }
    .tool-card h3 {
        font-size: 1rem !important;
        color: var(--text-main) !important;
    }
    .upload-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    .upload-zone {
        padding: 2rem 1rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #60a5fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-content a:hover {
    color: white;
}

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

.btn-cookie {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-cookie:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-cookie-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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