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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #334155;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-brand i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0ea5e9 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Concepts Section */
.concepts {
    padding: 80px 0;
    background: #0f172a;
}

.concepts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.concept-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.concept-card:hover::before {
    transform: scaleX(1);
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.concept-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.concept-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #f1f5f9;
}

.concept-card p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.concept-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.concept-card.active .concept-details {
    max-height: 500px;
}

.concept-details h4 {
    color: #f1f5f9;
    margin-bottom: 15px;
    font-size: 1rem;
}

.concept-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.concept-details li {
    padding: 5px 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 20px;
}

.concept-details li::before {
    content: '•';
    color: #0ea5e9;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.example {
    background: #1e293b;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
    font-style: italic;
    color: #cbd5e1;
}

.comparison-table {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #334155;
    color: #e2e8f0;
}

.comparison-table th {
    background: #0f172a;
    font-weight: 600;
    color: #f1f5f9;
}

.comparison-table tr:hover {
    background: #1e293b;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: #0f172a;
}

.calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.calculator-input {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.calculator-input h3 {
    margin-bottom: 30px;
    color: #f1f5f9;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #cbd5e1;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #334155;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #0f172a;
    color: #e2e8f0;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #60a5fa);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.calculator-results {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.calculator-results h3 {
    margin-bottom: 30px;
    color: #f1f5f9;
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    text-align: center;
    padding: 20px;
    background: #0f172a;
    border-radius: 8px;
    border: 1px solid #334155;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.error-budget-visualization {
    margin-top: 30px;
}

.error-budget-visualization h4 {
    margin-bottom: 15px;
    color: #f1f5f9;
}

.budget-bar {
    height: 20px;
    background: #334155;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.budget-used {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    transition: width 0.5s ease;
}

.budget-remaining {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    transition: width 0.5s ease;
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #94a3b8;
}

.slo-comparison {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.slo-comparison h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.comparison-item {
    background: #0f172a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.comparison-item .slo-target {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.comparison-item .downtime {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.comparison-item .description {
    font-size: 0.8rem;
    color: #64748b;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #0f172a;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.case-study-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #1e293b;
    border: 2px solid #334155;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #cbd5e1;
}

.tab-btn.active,
.tab-btn:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

.case-study-content {
    background: #1e293b;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #334155;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #f1f5f9;
}

.company-info p {
    color: #94a3b8;
    font-style: italic;
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.journey-card {
    background: #0f172a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.journey-card i {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 15px;
}

.journey-card h5 {
    margin-bottom: 10px;
    color: #f1f5f9;
}

.journey-card p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.slo-examples {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slo-example {
    background: #0f172a;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
    color: #cbd5e1;
}

/* Simulator Section */
.simulator {
    padding: 80px 0;
    background: #0f172a;
}

.simulator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.simulator-controls {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.simulator-controls h3 {
    margin-bottom: 30px;
    color: #f1f5f9;
}

.incident-controls {
    margin-bottom: 40px;
}

.btn-secondary {
    background: #334155;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-secondary:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid #334155;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #334155;
    color: white;
}

.policy-settings h4 {
    margin-bottom: 20px;
    color: #2d3748;
}

.simulator-results {
    background: #1e293b;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.simulator-results h3 {
    margin-bottom: 30px;
    color: #f1f5f9;
}

.simulation-timeline {
    margin-bottom: 30px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
    color: #cbd5e1;
}

.timeline-bar {
    height: 20px;
    background: #334155;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #60a5fa);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

.timeline-incidents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.incident-marker {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ef4444;
    border-radius: 2px;
}

.budget-status {
    margin-bottom: 30px;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #334155;
    background: #0f172a;
}

.status-card.healthy {
    background: #0f172a;
    border-color: #0ea5e9;
}

.status-card.warning {
    background: #0f172a;
    border-color: #f59e0b;
}

.status-card.critical {
    background: #0f172a;
    border-color: #ef4444;
}

.status-icon {
    font-size: 1.5rem;
}

.status-icon .fa-check-circle {
    color: #38a169;
}

.status-icon .fa-exclamation-triangle {
    color: #d69e2e;
}

.status-icon .fa-times-circle {
    color: #e53e3e;
}

.status-title {
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 5px;
}

.status-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
}

.policy-actions h4 {
    margin-bottom: 20px;
    color: #f1f5f9;
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #0f172a;
    border-radius: 6px;
    color: #cbd5e1;
}

.text-success {
    color: #38a169;
}

.text-warning {
    color: #d69e2e;
}

.text-danger {
    color: #e53e3e;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #334155;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0ea5e9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .calculator-grid,
    .simulator-grid {
        grid-template-columns: 1fr;
    }
    
    .result-cards {
        grid-template-columns: 1fr;
    }
    
    .journey-cards {
        grid-template-columns: 1fr;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .concepts,
    .calculator,
    .case-studies,
    .simulator {
        padding: 60px 0;
    }
    
    .concept-card,
    .calculator-input,
    .calculator-results,
    .simulator-controls,
    .simulator-results {
        padding: 20px;
    }
}

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

.concept-card,
.calculator-input,
.calculator-results,
.case-study-content,
.simulator-controls,
.simulator-results {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-top: 2px solid #0ea5e9;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-consent-text h3 {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-consent-text p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 600px;
}

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

.cookie-consent-buttons button {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    border: 1px solid #475569;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-settings-modal.show .cookie-settings-content {
    transform: scale(1);
}

.cookie-settings-header {
    padding: 20px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #475569;
}

.cookie-settings-header h3 {
    color: #f1f5f9;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #f1f5f9;
}

.cookie-settings-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 24px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

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

.cookie-category-header h4 {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 500;
}

.cookie-category p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

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

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

input[type="checkbox"]:checked + .toggle-slider {
    background-color: #0ea5e9;
}

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

input[type="checkbox"]:disabled + .toggle-slider {
    background-color: #0ea5e9;
    cursor: not-allowed;
}

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

.cookie-settings-footer {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #475569;
    display: flex;
    justify-content: flex-end;
}

.cookie-settings-footer button {
    margin-top: 20px;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-consent-buttons button {
        flex: 1;
        min-width: 120px;
    }

    .cookie-settings-content {
        width: 95%;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-consent-buttons button {
        width: 100%;
    }
}
