/* Digital Ascendancy - Main Stylesheet */

:root {
    --primary-dark: #1B365D;
    --primary-blue: #007FFF;
    --accent-blue: #00B4D8;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo svg {
    height: 100%;
    width: auto;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-blue);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: 300px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-blue);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #0099c7;
    transform: translateY(-2px);
}

/* Main Content Sections */
.section {
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.service-card-link:hover {
    color: var(--accent-blue);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* About Section */
.about {
    background-color: var(--gray-light);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    background-color: var(--primary-dark);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-text {
    text-align: center;
}

.contact-email {
    text-align: center;
    margin-top: 30px;
}

.contact-email a {
    color: var(--accent-blue);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
    color: #00d4ff;
}

/* Footer */
footer {
    background-color: #0d1b2a;
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

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

/* Packages Page Styles */
.packages-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 80px;
}

.packages-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.packages-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
    color: white;
    padding: 30px;
    text-align: center;
}

.workshop-header {
    background: var(--primary-blue);
}

.planning-header {
    background: #00a6c7;
}

.website-header {
    background: var(--accent-blue);
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.package-body {
    padding: 40px 30px;
}

.package-description {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.package-features {
    list-style: none;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li:before {
    content: "✓";
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.package-cta {
    text-align: center;
    margin-top: 30px;
}

.package-button {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.package-button:hover {
    background: #0099c7;
}

/* Support Section */
.support-section {
    background: var(--gray-light);
    padding: 80px 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: -30px;
    margin-bottom: 40px;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.support-feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.support-feature h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* Add-ons Section */
.addons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.addon-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid var(--gray-medium);
    transition: border-color 0.3s ease;
}

.addon-item:hover {
    border-color: var(--accent-blue);
}

.addon-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.addon-item p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .hero-banner {
        height: 200px;
    }

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

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

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

    .support-features {
        grid-template-columns: 1fr;
    }

    .addons-list {
        grid-template-columns: 1fr;
    }
}

/* Service Pages Styles */
.service-hero {
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 80px;
    color: white;
}

.workshop-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0099c7 100%);
}

.website-hero {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
}

.marketing-hero {
    background: linear-gradient(135deg, #00a6c7 0%, var(--accent-blue) 100%);
}

.planning-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
}

.ai-hero {
    background: linear-gradient(135deg, #6b46c1 0%, var(--primary-blue) 100%);
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.alt-bg {
    background: var(--gray-light);
}

/* Workshop Page Specific */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.day-schedule {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.day-schedule h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* Website Development Page Specific */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.included-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.included-item h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Digital Marketing Page Specific */
.services-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-category {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-category h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.service-details {
    list-style: none;
}

.service-details li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.result-item {
    text-align: center;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.result-item h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* Business Planning Page Specific */
.planning-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.component {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.component h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.component-list {
    list-style: none;
}

.component-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #666;
}

.planning-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
    padding: 0 20px;
}

.planning-timeline:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-medium);
    z-index: 0;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.timeline-marker {
    font-size: 2rem;
    margin-bottom: 15px;
    background: white;
    display: inline-block;
    padding: 10px;
}

.timeline-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Service CTA Section */
.service-cta-section {
    background: var(--primary-dark);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.service-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .service-features-grid,
    .curriculum-grid,
    .included-grid,
    .services-breakdown,
    .results-grid,
    .planning-components,
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .planning-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .planning-timeline:before {
        display: none;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* AI Service Page Specific Styles */
.ai-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.module-card h3 {
    color: #6b46c1;
    margin-bottom: 20px;
}

.module-topics {
    list-style: none;
}

.module-topics li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.module-topics li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.use-case {
    text-align: center;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.use-case h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.training-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.option-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.option-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.option-card p {
    color: #666;
    margin-bottom: 20px;
}

.option-features {
    list-style: none;
}

.option-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.option-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
}

/* Responsive adjustments for AI page */
@media (max-width: 768px) {
    .ai-modules-grid,
    .use-cases-grid,
    .training-options {
        grid-template-columns: 1fr;
    }
    
    .roi-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
  /* Chatbot Styles */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#chatbot-toggle {
    width: 60px;
    height: 60px;
    background: #007cba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    color: white;
    font-size: 24px;
}

#chatbot-window {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    flex-direction: column;
}

#chatbot-window.open {
    display: flex;
}

.chat-header {
    background: #007cba;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
}

.message.user .message-bubble {
    background: #007cba;
    color: white;
}

.message.bot .message-bubble {
    background: white;
    border: 1px solid #ddd;
}

.chat-input-container {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.chat-send {
    padding: 10px 20px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* Style 1: Modern Clean */
        .chat-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(151, 183, 209, 0.918);
            border-radius: 50%;
            font-size: 18px;
            font-weight: bold;
            color: #faf8f8;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .chat-close:hover {
            background: rgba(54, 67, 167, 0.2);
            color: #f7eeee;
            transform: scale(1.1);
        }

/* Mission & Vision Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mv-card p {
    line-height: 1.8;
    color: #555;
}

/* Values Section */
.values-section {
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 15px;
}

.values-title {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
}

.value-item strong {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.value-item span {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
/* Enhanced Footer with Legal Information */
.footer-main {
    margin-bottom: 20px;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.6;
}

.footer-legal p {
    margin: 5px 0;
}

.footer-links {
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--accent-blue);
    text-decoration: none;
    margin: 0 10px;
}

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

@media (max-width: 768px) {
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 54, 93, 0.98);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-size: 14px;
}

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

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-consent-text p {
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #00B4D8;
    text-decoration: underline;
}

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

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

.cookie-btn-accept-all {
    background: #00B4D8;
    color: white;
}

.cookie-btn-accept-all:hover {
    background: #0099c7;
    transform: translateY(-2px);
}

.cookie-btn-essential {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-essential:hover {
    background: white;
    color: #1B365D;
}

.cookie-btn-settings {
    background: transparent;
    color: #00B4D8;
    text-decoration: underline;
    padding: 10px;
}

.cookie-btn-settings:hover {
    color: white;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    background: #1B365D;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.cookie-settings-header h2 {
    margin: 0;
    font-size: 24px;
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-category {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h3 {
    margin: 0;
    color: #1B365D;
    font-size: 18px;
}

.cookie-category-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #00B4D8;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #007FFF;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 20px 30px;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

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

.cookie-save-btn {
    background: #00B4D8;
    color: white;
}

.cookie-save-btn:hover {
    background: #0099c7;
}

.cookie-accept-all-btn {
    background: #007FFF;
    color: white;
}

.cookie-accept-all-btn:hover {
    background: #0066dd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-settings-content {
        margin: 20px;
        max-height: 90vh;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
    
    .cookie-settings-footer button {
        width: 100%;
    }
}