/* ===== CSS RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Clean Colors - Light Mode */
    --primary-gradient: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    --secondary-gradient: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    --accent-gradient: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
    --success-gradient: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    
    /* Solid Colors for Fallbacks */
    --primary-color: #4a5568;
    --secondary-color: #718096;
    --accent-color: #3182ce;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --danger-color: #e53e3e;
    
    /* Text Colors - Dark text for readability */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;
    
    /* Background Colors - White/Gray scheme */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --bg-quaternary: #e2e8f0;
    --bg-dark: #2d3748;
    --bg-darker: #1a202c;
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* Enhanced Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 25px rgba(74, 85, 104, 0.2);
    
    /* Border */
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;
    
    /* Modern Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Cal Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Enhanced Spacing */
    --container-max-width: 1280px;
    --content-max-width: 800px;
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
    
    /* Animation */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== MODERN BASE STYLES ===== */
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ===== MODERN BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-gradient);
    color: white;
}

.btn-success {
    background: var(--success-gradient);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

/* ===== MODERN HEADER & NAVIGATION ===== */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: none;
    transition: all var(--transition-normal);
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== MODERN HERO SECTIONS ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: var(--section-padding);
    min-height: 80vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-xl);
    margin: 2rem;
    z-index: -1;
    box-shadow: var(--glass-shadow);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #667eea 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-video {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.video-placeholder h3 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: var(--text-light);
}

.blog-hero,
.contact-hero {
    text-align: center;
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.blog-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===== FEATURED POSTS & BLOG ===== */
.featured-posts {
    padding: var(--section-padding);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Latest posts on homepage - always 3 in a row */
.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Responsive for latest posts */
@media (max-width: 992px) {
    .latest-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-posts-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.post-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.post-category {
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.view-all-posts {
    text-align: center;
}

/* ===== BLOG SPECIFIC ===== */
.blog-content {
    padding: var(--section-padding);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    background-color: transparent;
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
}

/* ===== CONTACT FORM ===== */
.contact-content {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* ===== FAQ SECTION ===== */
.contact-faq {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-social p {
    color: #9ca3af;
    margin: 0;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #d1d5db;
}

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

.cookie-link {
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Cookie Settings Panel */
.cookie-settings {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent.show-settings .cookie-settings {
    display: block;
}

.cookie-consent.show-settings .cookie-content {
    flex-direction: column;
    align-items: flex-start;
}

.cookie-settings h3 {
    color: white;
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    width: 100%;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-category {
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-description {
    color: #d1d5db;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1rem;
    flex-wrap: wrap;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .blog-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .blog-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }
.visible { display: block; }/**
 * Comprehensive Cookie Banner Styles
 * GDPR/CCPA Compliant Design
 * Version: 1.0
 * Created: August 31, 2025
 */

/* Cookie Banner Base Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #007bff;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent.fade-out {
    opacity: 0;
    transform: translateY(100%);
}

/* Cookie Content Container */
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Cookie Header */
.cookie-header h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main Content */
.cookie-main-content p {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.cookie-main-content p:last-child {
    margin-bottom: 20px;
}

.cookie-main-content strong {
    color: #ffffff;
}

/* Cookie Buttons */
.cookie-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-buttons .btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.cookie-buttons .btn-primary {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.cookie-buttons .btn-primary:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cookie-buttons .btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.cookie-buttons .btn-secondary:hover {
    background: #545b62;
    border-color: #545b62;
    transform: translateY(-2px);
}

.cookie-buttons .btn-outline {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.cookie-buttons .btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Links */
.cookie-links {
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    margin-top: 15px;
}

.cookie-links a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Cookie Settings Panel */
.cookie-settings {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings h3 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.settings-intro {
    color: #e0e0e0;
    margin: 0 0 25px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Cookie Options */
.cookie-option {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.cookie-option-header {
    margin-bottom: 10px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;
    color: #ffffff;
    font-size: 1rem;
}

/* Custom Toggle Switch */
.toggle-slider {
    position: relative;
    width: 50px;
    height: 26px;
    background: #6c757d;
    border-radius: 13px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hide default checkbox */
.cookie-toggle input[type="checkbox"] {
    display: none;
}

/* Checked state */
.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background: #28a745;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Disabled state */
.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider {
    background: #28a745;
    opacity: 0.7;
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider:before {
    transform: translateX(24px);
}

/* Cookie Description */
.cookie-description {
    margin: 10px 0 8px 0;
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-description strong {
    color: #ffffff;
}

.cookie-details {
    margin-top: 8px;
}

.cookie-details small {
    color: #a0a0a0;
    font-size: 0.8rem;
    font-style: italic;
}

/* Settings Buttons */
.cookie-settings-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.cookie-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-info p {
    margin: 0;
    color: #b0b0b0;
}

.cookie-info a {
    color: #007bff;
    text-decoration: none;
}

.cookie-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .cookie-settings {
        padding: 20px;
    }
    
    .cookie-option {
        padding: 15px;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 12px;
    }
    
    .cookie-main-content p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons .btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .cookie-toggle {
        font-size: 0.9rem;
    }
    
    .toggle-slider {
        width: 44px;
        height: 24px;
    }
    
    .toggle-slider:before {
        width: 18px;
        height: 18px;
        top: 3px;
        left: 3px;
    }
    
    .cookie-toggle input[type="checkbox"]:checked + .toggle-slider:before {
        transform: translateX(20px);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cookie-consent {
        background: #000000;
        border-top-color: #ffffff;
    }
    
    .cookie-buttons .btn-primary {
        background: #ffffff;
        color: #000000;
        border-color: #ffffff;
    }
    
    .cookie-buttons .btn-outline {
        border-color: #ffffff;
        color: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent,
    .cookie-buttons .btn,
    .toggle-slider,
    .toggle-slider:before {
        transition: none;
    }
}

/* Dark Theme Adjustments */
body.dark-mode .cookie-consent {
    background: rgba(20, 20, 20, 0.98);
}

body.dark-mode .cookie-settings {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .cookie-option {
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .cookie-option:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Success Message */
.cookie-success-message {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Floating Cookie Button */
#floating-cookie-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#floating-cookie-button:hover {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3) !important;
}