:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #141b2d;
    --bg-card: #1a2332;
    --border-color: #2d3748;
    --primary: #2196f3;
    --secondary: #00bcd4;
    --success: #4caf50;
    --warning: #ffc107;
    --text-primary: #e8eaed;
    --text-secondary: #9aa0a6;
    --text-muted: #6b7280;
    --overlay: rgba(10, 14, 26, 0.95);
}

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

body {
    font-family: 'Libre Franklin', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.iti {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--overlay);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.uk-navbar-container {
    background: transparent !important;
}

.uk-navbar-nav > li > a {
    color: var(--text-primary);
    font-weight: 500;
    text-transform: none;
    transition: color 0.3s ease;
}

.uk-navbar-nav > li > a:hover,
.uk-navbar-nav > li > a:focus {
    color: var(--primary);
}

.lang-switcher .lang-link {
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.lang-switcher .lang-link:hover,
.lang-switcher .lang-link:focus {
    background: var(--primary);
    color: #fff;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 188, 212, 0.15) 0%, transparent 50%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.metric-card {
    background: var(--bg-card);
    padding: 24px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    min-width: 180px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.15);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    background: var(--primary);
    color: #fff;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-cta:hover,
.hero-cta:focus {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
    color: #fff;
}

.hero-cta:active {
    transform: translateY(0);
}

.dashboard-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
}

.dashboard-widget:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.widget-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 243, 0.15);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.widget-icon.secondary {
    background: rgba(0, 188, 212, 0.15);
    color: var(--secondary);
}

.widget-icon.warning {
    background: rgba(255, 193, 7, 0.15);
    color: var(--warning);
}

.widget-icon.success {
    background: rgba(76, 175, 80, 0.15);
    color: var(--success);
}

.widget-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.widget-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-trend {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.widget-trend.positive {
    color: var(--success);
}

.trends-section {
    padding: 100px 0;
}

.trend-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trend-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.trend-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trend-card:hover .trend-image img {
    transform: scale(1.1);
}

.trend-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trend-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.trend-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.trend-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.trend-category,
.trend-popularity {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trend-popularity {
    color: var(--warning);
}

.solutions-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.uk-section-muted {
    background: var(--bg-secondary) !important;
}

.solution-content {
    padding-right: 40px;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.solution-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.solution-features {
    list-style: none;
    margin-top: 32px;
}

.solution-features li {
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-features li i {
    color: var(--success);
    font-size: 1.25rem;
}

.solution-image-grid {
    display: grid;
    gap: 20px;
}

.solution-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.solution-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-image:hover img {
    transform: scale(1.05);
}

.insights-section {
    padding: 100px 0;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.insight-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-category {
    display: inline-block;
    background: rgba(0, 188, 212, 0.15);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.insight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.insight-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.insight-meta {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.insight-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.contact-info {
    padding-right: 40px;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 48px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(33, 150, 243, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.contact-form .uk-form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-form .uk-input,
.contact-form .uk-textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.contact-form .uk-input::placeholder,
.contact-form .uk-textarea::placeholder {
    color: var(--text-muted);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
}

.checkbox-label .uk-checkbox {
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-label a:hover,
.checkbox-label a:focus {
    color: var(--secondary);
}

.uk-button-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.uk-button-primary:hover,
.uk-button-primary:focus {
    background: #1976d2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.uk-button-primary:active {
    transform: translateY(0);
}

.uk-button-primary:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    transform: none;
}

.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.thankyou-content {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 64px 40px;
}

.thankyou-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.15);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 4rem;
}

.thankyou-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.thankyou-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-subtext {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.thankyou-actions {
    margin-bottom: 48px;
}

.thankyou-info {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.thankyou-info h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.thankyou-info p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.small-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-section {
    padding: 120px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.legal-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.legal-content {
    color: var(--text-secondary);
    line-height: 1.9;
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover,
.legal-content a:focus {
    color: var(--secondary);
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--bg-secondary);
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-secondary);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 960px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-metrics {
        gap: 16px;
    }
    
    .metric-card {
        min-width: 140px;
        padding: 20px 24px;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-content,
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .metric-card {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .dashboard-widget {
        padding: 24px;
    }
    
    .trend-image,
    .insight-image {
        height: 200px;
    }
    
    .solution-image img {
        height: 240px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 12px 8px;
    }
}

#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

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

.cookie-consent-text p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.cookie-btn-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
    background: #1976d2;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cookie-btn-decline:hover,
.cookie-btn-decline:focus {
    background: var(--bg-primary);
    border-color: var(--text-muted);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.cookie-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover,
.cookie-modal-close:focus {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

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

.cookie-category-header h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
}

.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: var(--border-color);
    transition: 0.3s;
    border-radius: 24px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.cookie-modal-footer button {
    flex: 1;
}

@media (max-width: 640px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cookie-modal-content {
        padding: 24px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}