/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    line-height: 1.6;
    color: #2D3748;
    background-color: #F7FAFC;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: #4A5568;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background-color: #00BCD4;
    color: white;
    border-color: #00BCD4;
}

.btn-primary:hover {
    background-color: #00ACC1;
    border-color: #00ACC1;
}

.btn-secondary {
    background-color: transparent;
    color: #2D3748;
    border-color: #2D3748;
}

.btn-secondary:hover {
    background-color: #2D3748;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #4A5568 100%);
    position: relative;
    color: white;
    padding: 120px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo {
    height: 70px;
    width: 70px;
    margin-right: 16px;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 600;
    color: #00BCD4;
    letter-spacing: -0.02em;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
}

.badge-text {
    color: #00BCD4;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: #00BCD4;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #00BCD4 50%, transparent 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E2E8F0;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-icon {
    height: 32px;
    width: 32px;
    opacity: 0.9;
}

.hero-feature span {
    color: #CBD5E0;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    min-width: 180px;
}

.hero-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.trust-text {
    display: block;
    color: #A0AEC0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    height: 20px;
    width: 20px;
    opacity: 0.8;
}

.trust-item span {
    color: #CBD5E0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #F7FAFC;
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2D3748;
}

.feature-card p {
    color: #4A5568;
}

/* Content Images */
.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-image-main {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Security Section */
.security {
    padding: 80px 0;
    background-color: white;
}

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

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-highlight {
    background-color: #F7FAFC;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
    margin-bottom: 2rem;
}

.security-highlight h3 {
    color: #2D3748;
    margin-bottom: 1rem;
}

.security-highlight p {
    color: #4A5568;
    margin-bottom: 0;
    font-size: 1.1rem;
}

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

.security-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4A5568;
}

.check-icon {
    height: 20px;
    width: 20px;
    margin-right: 12px;
}

/* Purpose & Limitations Section */
.purpose-limitations {
    padding: 80px 0;
    background-color: #F7FAFC;
}

.purpose-limitations h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.purpose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.purpose-highlight {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.purpose-highlight h3 {
    color: #2D3748;
    margin-bottom: 1rem;
}

.purpose-highlight p {
    color: #4A5568;
    margin-bottom: 0;
    font-size: 1.1rem;
}

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

.limitation-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.limitation-item h4 {
    color: #2D3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.limitation-icon {
    height: 20px;
    width: 20px;
    margin-right: 8px;
}

.limitation-icon.included {
    filter: hue-rotate(180deg) saturate(2);
}

.limitation-icon.excluded {
    opacity: 0.6;
}

.limitation-item ul {
    list-style: none;
    padding-left: 0;
}

.limitation-item li {
    padding: 0.5rem 0;
    color: #4A5568;
    border-bottom: 1px solid #E2E8F0;
}

.limitation-item li:last-child {
    border-bottom: none;
}

/* Legal Requirements Section */
.legal-requirements {
    padding: 80px 0;
    background-color: white;
}

.legal-requirements h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.legal-highlight {
    background-color: #F7FAFC;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
    margin-bottom: 2rem;
}

.legal-highlight h3 {
    color: #2D3748;
    margin-bottom: 1rem;
}

.legal-highlight p {
    color: #4A5568;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.legal-responsibilities h4 {
    color: #2D3748;
    margin-bottom: 1.5rem;
}

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

.legal-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #4A5568;
}

.legal-icon {
    height: 20px;
    width: 20px;
    margin-right: 12px;
}

/* Risks & Liability Section */
.risks-liability {
    padding: 80px 0;
    background-color: #F7FAFC;
}

.risks-liability h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.risks-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.risk-warning {
    background-color: #FFF5F5;
    border: 1px solid #FEB2B2;
    border-left: 4px solid #E53E3E;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.risk-warning h3 {
    color: #E53E3E;
    margin-bottom: 1rem;
}

.risk-warning p {
    color: #742A2A;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.risk-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.risk-category {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.risk-category h4 {
    color: #2D3748;
    margin-bottom: 1rem;
}

.risk-category ul {
    list-style: none;
    padding-left: 0;
}

.risk-category li {
    padding: 0.5rem 0;
    color: #4A5568;
    border-bottom: 1px solid #E2E8F0;
}

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

/* Setup & Support Section */
.setup-support {
    padding: 80px 0;
    background-color: white;
}

.setup-support h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.setup-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.setup-steps h3 {
    color: #2D3748;
    margin-bottom: 2rem;
}

.setup-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #F7FAFC;
    border-radius: 8px;
}

.step-number {
    background-color: #00BCD4;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4A5568;
    margin-bottom: 0;
}

.support-channels {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #F7FAFC;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
}

.support-channels h4 {
    color: #2D3748;
    margin-bottom: 1.5rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-option {
    display: flex;
    align-items: center;
}

.support-icon {
    height: 20px;
    width: 20px;
    margin-right: 12px;
}

.support-option a {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 500;
}

.support-option a:hover {
    text-decoration: underline;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #F7FAFC;
}

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

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

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-image {
    margin-bottom: 1.5rem;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: #2D3748;
}

.product-card p {
    margin-bottom: 1.5rem;
    color: #4A5568;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E2E8F0;
    color: #4A5568;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: white;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
}

/* Technical Section */
.technical {
    padding: 80px 0;
    background-color: #F7FAFC;
}

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

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-spec {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
}

.tech-spec h4 {
    margin-bottom: 0.5rem;
    color: #2D3748;
}

.tech-spec p {
    color: #4A5568;
    margin-bottom: 0;
}

/* Compliance Section */
.compliance {
    padding: 80px 0;
    background-color: white;
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.compliance-features {
    margin-top: 2rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4A5568;
}

.compliance-icon {
    height: 24px;
    width: 24px;
    margin-right: 12px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F7FAFC;
}

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

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

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

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    height: 24px;
    width: 24px;
    margin-right: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2D3748;
}

.contact-item a {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin-bottom: 0;
    color: #4A5568;
}

/* Image Placeholders */
.image-placeholder {
    background-color: #E2E8F0;
    border: 2px dashed #CBD5E0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #718096;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
    opacity: 0.6;
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: 40px;
    margin-right: 12px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00BCD4;
}

.footer-description {
    max-width: 500px;
    margin: 0 auto 1rem auto;
    color: #E2E8F0;
}

.footer-contact {
    color: #CBD5E0;
    margin-bottom: 2rem;
}

.footer-contact a {
    color: #00BCD4;
    text-decoration: none;
}

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

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00BCD4;
    border-bottom-color: #00BCD4;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 1rem;
    text-align: center;
    color: #CBD5E0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 80px 0 60px 0;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature span {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .logo {
        height: 50px;
        width: 50px;
    }
    
    .about-content,
    .security-content,
    .purpose-content,
    .legal-content,
    .risks-content,
    .setup-content,
    .tech-content,
    .compliance-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .limitation-grid,
    .risk-categories {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .products-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        height: 200px;
    }
    
    .content-image {
        height: 250px;
    }
    
    .product-image-main {
        height: 180px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D3748;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-text h3 {
    color: #00BCD4;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: #E2E8F0;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
}

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

.cookie-btn-accept:hover {
    background-color: #00ACC1;
}

.cookie-btn-reject {
    background-color: transparent;
    color: #E2E8F0;
    border: 1px solid #4A5568;
}

.cookie-btn-reject:hover {
    background-color: #4A5568;
}

.cookie-btn-customize {
    background-color: transparent;
    color: #00BCD4;
    border: 1px solid #00BCD4;
}

.cookie-btn-customize:hover {
    background-color: #00BCD4;
    color: white;
}

.cookie-link {
    color: #CBD5E0;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #00BCD4;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.cookie-modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.cookie-modal-header h3 {
    color: #2D3748;
    margin-bottom: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4A5568;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #2D3748;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    color: #2D3748;
    margin-bottom: 0;
}

.cookie-category p {
    color: #4A5568;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E0;
    transition: 0.3s;
    border-radius: 24px;
}

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

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

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

input:disabled + .cookie-slider {
    background-color: #00BCD4;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #E2E8F0;
    text-align: right;
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }
}