/* Font Face Definitions */
@font-face {
    font-family: 'Nunito';
    src: url('assets/fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('assets/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-style: italic;
    font-display: swap;
}

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

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent iOS bounce scrolling */
    html, body {
        position: fixed;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    
    body {
        position: relative;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 25%, #ecfdf5 50%, #f0fdf4 75%, #f6ffed 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 { font-size: 44px; font-weight: 800; }
h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 28px; font-weight: 600; }
h4 { font-size: 22px; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #33a38b, #99cc66);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d8f7a, #7db854);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(51, 163, 139, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #33a38b;
    border: 2px solid #33a38b;
}

.btn-secondary:hover {
    background: #33a38b;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #e5e7eb;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #33a38b;
    color: #33a38b;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-app-store img {
    height: 60px;
    width: auto;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 1000;
}

/* Flag handling - show emoji by default, fallback to CSS flags */
.flag-emoji {
    font-size: 18px;
    margin-right: 8px;
}

.flag-icon {
    display: none;
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Show PNG flags by default on privacy, terms, and impressum pages */
.privacy-section .flag-emoji,
.terms-section .flag-emoji,
.impressum-section .flag-emoji,
.legal-content .flag-emoji {
    display: none;
}

.privacy-section .flag-icon,
.terms-section .flag-icon,
.impressum-section .flag-icon,
.legal-content .flag-icon {
    display: inline-block;
}

/* If emojis are not supported, hide emoji and show CSS flag */
@supports not (font-variation-settings: normal) {
    .flag-emoji { display: none; }
    .flag-icon { display: inline-block; }
}

/* Alternative: Use CSS flags by default on Windows */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .flag-emoji { display: none; }
    .flag-icon { display: inline-block; }
}

.flag-icon.de { 
    background: url('/assets/flags/de.png') no-repeat center;
    background-size: cover;
}
.flag-icon.gb { 
    background: url('/assets/flags/gb.png') no-repeat center;
    background-size: cover;
}
.flag-icon.it { 
    background: url('/assets/flags/it.png') no-repeat center;
    background-size: cover;
}
.flag-icon.si { 
    background: url('/assets/flags/si.png') no-repeat center;
    background-size: cover;
}
.flag-icon.es { 
    background: url('/assets/flags/es.png') no-repeat center;
    background-size: cover;
}
.flag-icon.fr { 
    background: url('/assets/flags/fr.png') no-repeat center;
    background-size: cover;
}
.flag-icon.hr { 
    background: url('/assets/flags/hr.png') no-repeat center;
    background-size: cover;
}
.flag-icon.ba { 
    background: url('/assets/flags/ba.png') no-repeat center;
    background-size: cover;
}
.flag-icon.rs { 
    background: url('/assets/flags/rs.png') no-repeat center;
    background-size: cover;
}
.flag-icon.bg,
.flag-icon.BG { 
    background: url('/assets/flags/bg.png') no-repeat center;
    background-size: cover;
}
.flag-icon.ro,
.flag-icon.RO { 
    background: url('/assets/flags/ro.png') no-repeat center;
    background-size: cover;
}
.flag-icon.el,
.flag-icon.gr,
.flag-icon.GR { 
    background: url('/assets/flags/el.png') no-repeat center;
    background-size: cover;
}

.language-current {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: auto;
}

.language-current:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 14px;
}

.language-option:hover {
    background: #f3f4f6;
}

.language-option.active {
    background: #ecfdf5;
    color: #047857;
    font-weight: 600;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    overflow: visible;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-link:hover {
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.brand-text {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #33a38b;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #047857;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 24px;
    color: #111827;
    height: 80px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.gradient-text {
    background: linear-gradient(135deg, #33a38b, #99cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.learny-highlight {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607, #ff006e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes rainbowShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-text-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 150px;
    height: 100%;
    vertical-align: middle;
}

.animated-text {
    display: inline-flex;
    align-items: center;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    z-index: 2;
    white-space: nowrap;
    min-width: 120px;
    height: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .animated-text {
        font-size: 40px;
        min-width: 90px;
        height: 50px;
    }
    
    .animated-text-container {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 32px;
        min-width: 80px;
        height: 40px;
    }
    
    .animated-text-container {
        height: 40px;
    }
}

.animated-text:empty::before {
    content: '\00A0';
    visibility: hidden;
}

.phantom-text {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    z-index: 1;
    white-space: nowrap;
}

.text-cursor {
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background: linear-gradient(135deg, #33a38b, #99cc66);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 2px;
}

.text-dot {
    color: #000;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-preinstalled {
    font-size: 18px;
    color: #059669;
    font-weight: 600;
    margin-bottom: 32px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: inline-block;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: #374151;
    max-width: 310px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-title {
    font-weight: 600;
    color: #111827;
    font-size: 17px;
}

.feature-description {
    font-size: 15px;
    color: #4b5563;
    font-weight: 400;
}

.feature-icon {
    font-size: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.hero-newsletter {
    margin-top: 2rem;
    padding: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #10b981;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-newsletter::before {
    content: "🔔";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.hero-newsletter:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-newsletter-title {
    font-size: 24px;
    color: #047857;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-newsletter-text {
    font-size: 18px;
    color: #047857;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
}

.hero-newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 3px solid #d1fae5;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 200px;
    background: #f0fdf4;
    font-weight: 500;
}

.hero-newsletter-input:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.hero-newsletter-input::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.btn-newsletter-hero {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 16px 32px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-newsletter-hero:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-newsletter-hero:active {
    transform: translateY(-1px);
}

.privacy-checkbox {
    margin: 15px 0;
    text-align: left;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 8px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #10b981;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #10b981;
    border-color: #10b981;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 50%;
    top: 50%;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.checkbox-text,
.checkbox-label {
    flex: 1;
    color: white;
    margin-left: 0;
}

.hero-newsletter .checkbox-text,
.hero-newsletter .checkbox-label {
    color: #047857;
}

.contact-form .checkbox-label {
    color: #374151;
}

.checkbox-label a {
    color: #10b981;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.checkbox-label a:hover {
    color: #047857;
}

.privacy-link {
    color: #10b981;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #059669;
    text-decoration: none;
}

/* Privacy link in hero newsletter section (dark background) */
.hero-newsletter .privacy-link {
    color: #34d399;
    text-decoration: underline;
    font-weight: 600;
}

.hero-newsletter .privacy-link:hover {
    color: #6ee7b7;
    text-decoration: none;
}

/* Privacy link in regular newsletter section (light background) */
.newsletter-section .privacy-link {
    color: #a7f3d0;
    text-decoration: underline;
    font-weight: 600;
}

.newsletter-section .privacy-link:hover {
    color: #6ee7b7;
    text-decoration: none;
}

.hero-newsletter-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    text-align: center;
}

.hero-newsletter-message.show {
    display: block;
}

.hero-newsletter-message.success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.hero-newsletter-message.error {
    background: #fee2e2;
    border: 1px solid #f87171;
    color: #991b1b;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.hero-image {
    text-align: center;
}

.app-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

/* Features */
.features {
    background: #f9fafb;
    padding-top: 6rem;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

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

.screenshot-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.screenshot-item h4 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.screenshot-item p {
    color: #4b5563;
}


/* FAQ */
.faq {
    background: white;
    padding-top: 6rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #047857;
}

.faq-question {
    padding: 24px;
    background: #f9fafb;
    margin: 0;
    cursor: pointer;
    position: relative;
    color: #111827;
    font-size: 24px;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #047857;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px; /* Increased height for longer content */
}

.faq-answer p {
    margin: 0;
    color: #4b5563;
}

/* Download */
.download {
    background: linear-gradient(135deg, #047857, #10b981);
    color: white;
    text-align: center;
}

.download h2 {
    color: white;
    margin-bottom: 1rem;
}

.download p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.coming-soon {
    position: relative;
}

.coming-soon img.disabled {
    filter: grayscale(1);
    opacity: 0.6;
}

.coming-soon-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* App Store Badge */
.app-store-badge {
    height: 60px !important;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

/* Google Play Badge */
.google-play-badge {
    height: 60px !important;
    width: auto;
    transition: transform 0.3s ease;
}

.google-play-badge:hover {
    transform: scale(1.05);
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 250px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.btn-newsletter {
    background: white;
    color: #047857;
    padding: 14px 32px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-privacy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-message {
    margin-top: 1.5rem;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.newsletter-message.show {
    display: block;
}

.newsletter-message.success {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: white;
}

/* Contact */
.contact {
    background: #f9fafb;
}

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

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

.contact-info p {
    color: #4b5563;
    margin-bottom: 2rem;
}

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

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

.contact-icon {
    font-size: 24px;
    margin-top: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.contact-method strong {
    color: #111827;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method p {
    margin: 0;
    color: #4b5563;
}

.email-link {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #047857;
    text-decoration: underline;
}

/* Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group .checkbox-container {
    margin-top: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group label.checkbox-container {
    display: flex;
    font-weight: normal;
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #047857;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* reCAPTCHA responsive fixes */
.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
    margin: 0 auto;
    max-width: 100%;
}

#recaptcha-container {
    overflow: hidden;
    max-width: 100%;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.form-message.show {
    transform: translateY(0);
    opacity: 1;
}

.form-message .message-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.form-message .message-text {
    flex: 1;
    font-weight: 500;
}

.form-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.form-success .message-icon {
    background: #10b981;
    color: white;
}

.form-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #f87171;
    color: #991b1b;
}

.form-error .message-icon {
    background: #ef4444;
    color: white;
}

/* Form state indicators */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success animation */
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }
    50% {
        transform: scale(1.3) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(45deg);
    }
}

.form-success .message-icon {
    animation: checkmark 0.6s ease-out;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-brand-text {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #99cc66;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

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

/* Mobile Menu Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #047857;
    cursor: pointer;
    padding: 8px;
    transition: background-color 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background-color: rgba(4, 120, 87, 0.1);
    border-radius: 4px;
}

.nav-menu {
    transition: all 0.3s ease;
}

.nav-menu.mobile-active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
    animation: slideDown 0.3s ease-out;
    z-index: 999;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.mobile-active .nav-link,
.nav-menu.mobile-active .btn {
    margin: 0.5rem 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.3s ease-out forwards;
}

.nav-menu.mobile-active .nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.mobile-active .nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-menu.mobile-active .nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-menu.mobile-active .btn { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        min-height: 56px;
        text-align: center;
        padding: 0 10px;
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-preinstalled {
        font-size: 15px;
        padding: 10px 16px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
        align-items: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-newsletter {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .hero-newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-newsletter-input {
        min-width: 100%;
    }
    
    .btn-newsletter-hero {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .navbar .container {
        position: relative;
        width: 100%;
        max-width: 1200px;
        overflow: visible;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.mobile-active {
        display: flex !important;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .language-selector {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .language-current {
        font-size: 16px;
        padding: 6px 10px;
        min-width: 45px;
    }
}

/* Medium screens - prevent button misalignment */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-features {
        justify-content: flex-start;
    }
}

/* Flexible scaling for screens under 375px */
@media (max-width: 375px) {
    /* Calculate responsive units based on viewport width */
    :root {
        --scale-factor: calc(100vw / 375);
    }
    
    /* Typography scales fluidly */
    .hero-title {
        font-size: clamp(24px, 7.5vw, 32px);
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 4vw, 16px);
    }
    
    .hero-preinstalled {
        font-size: clamp(12px, 3.5vw, 14px);
        padding: clamp(6px, 2vw, 8px) clamp(10px, 3vw, 12px);
    }
    
    .section-title {
        font-size: clamp(26px, 8vw, 32px);
    }
    
    /* Container and spacing scales */
    .container {
        padding: 0 clamp(12px, 4vw, 20px);
    }
    
    .hero {
        padding: clamp(80px, 25vw, 100px) 0 clamp(50px, 15vw, 60px);
    }
    
    /* Form elements scale appropriately */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: clamp(14px, 4.5vw, 16px);
        padding: clamp(8px, 2.5vw, 12px) clamp(10px, 3vw, 16px);
    }
    
    .contact-form {
        padding: clamp(16px, 5vw, 24px) clamp(12px, 4vw, 16px);
    }
    
    /* Buttons scale fluidly */
    .btn {
        padding: clamp(8px, 2.5vw, 12px) clamp(16px, 5vw, 24px);
        font-size: clamp(13px, 4vw, 15px);
    }
    
    .btn-large {
        padding: clamp(12px, 3.5vw, 16px) clamp(24px, 7vw, 32px);
        font-size: clamp(14px, 4.5vw, 16px);
    }
    
    /* Feature cards scale */
    .feature-card {
        padding: clamp(20px, 6vw, 32px) clamp(16px, 5vw, 24px);
    }
    
    .feature-icon-large {
        font-size: clamp(32px, 10vw, 48px);
    }
    
    /* reCAPTCHA scales with viewport */
    .g-recaptcha {
        transform: scale(clamp(0.7, calc(100vw / 375 * 0.77), 0.85));
        margin-left: clamp(-8px, -2vw, -5px);
    }
    
    /* Footer scales */
    .footer {
        padding: clamp(24px, 7vw, 32px) 0 clamp(16px, 5vw, 24px);
    }
    
    .footer-brand-text {
        font-size: clamp(16px, 5vw, 20px);
    }
    
    .footer-links a {
        font-size: clamp(12px, 3.5vw, 14px);
        padding: clamp(2px, 1vw, 4px) clamp(4px, 1.5vw, 8px);
    }
    
    .footer-bottom p {
        font-size: clamp(11px, 3vw, 13px);
    }
    
    /* Checkboxes scale */
    .checkmark {
        width: clamp(18px, 6vw, 24px);
        height: clamp(18px, 6vw, 24px);
    }
    
    .checkbox-text,
    .checkbox-label {
        font-size: clamp(12px, 3.5vw, 14px);
        color: white;
    }
    
    /* Newsletter forms scale */
    .newsletter-input,
    .hero-newsletter-input {
        padding: clamp(10px, 3vw, 14px) clamp(12px, 4vw, 16px);
        font-size: clamp(13px, 4vw, 15px);
    }
    
    /* Privacy page heading scales */
    .privacy-section h1 {
        font-size: clamp(28px, 9vw, 36px);
        margin-bottom: clamp(20px, 6vw, 30px);
    }
    
    .privacy-section h2 {
        font-size: clamp(20px, 6vw, 24px);
        margin-top: clamp(24px, 7vw, 32px);
        margin-bottom: clamp(12px, 4vw, 16px);
    }
    
    .privacy-section h3 {
        font-size: clamp(16px, 5vw, 20px);
        margin-top: clamp(16px, 5vw, 20px);
        margin-bottom: clamp(8px, 3vw, 12px);
    }
    
    .privacy-content {
        padding: clamp(16px, 5vw, 24px) clamp(12px, 4vw, 20px);
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: clamp(14px, 4vw, 16px);
        line-height: clamp(1.4, 1.6, 1.6);
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
        white-space: normal;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 5px;
        height: auto;
        min-height: 50px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hero-preinstalled {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .feature-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    /* Fix form message visibility on mobile */
    .form-message {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding-top: 1rem;
    }
    
    /* Footer mobile optimization */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand-text {
        font-size: 18px;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 13px;
        padding: 0.25rem 0.5rem;
    }
    
    /* Social media sharing mobile optimization */
    .social-sharing-section {
        margin-top: 30px;
        padding: 25px 20px;
    }
    
    .social-sharing-section h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .social-sharing-section p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .social-buttons {
        gap: 15px;
        justify-content: center;
    }
    
    .social-btn {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .social-btn span {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* Fix for horizontal scroll on mobile */
    .hero-image,
    .screenshot-item img {
        max-width: 100%;
        height: auto;
    }
    
    .app-store-badge,
    .google-play-badge {
        height: 50px !important;
        width: auto;
        max-width: 100%;
    }
    
    /* reCAPTCHA mobile fix */
    .g-recaptcha {
        transform: scale(0.85);
    }
    
    /* Prevent any absolute/fixed elements from causing overflow */
    section {
        overflow-x: hidden;
    }
    
    /* Language dropdown mobile fix */
    .language-dropdown {
        right: 0;
        left: auto;
        max-width: calc(100vw - 30px);
        z-index: 9999;
    }
}

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

.feature-card,
.screenshot-item {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success/Error States */
.form-success {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-error {
    background: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Privacy error message */
.privacy-error-message {
    display: flex;
    align-items: center;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    color: #dc2626;
    font-size: 14px;
    animation: slideInDown 0.3s ease;
}

.privacy-error-message .error-icon {
    margin-right: 8px;
    font-size: 16px;
}

.privacy-error-message .error-text {
    flex: 1;
}

/* Checkbox error highlight */
.checkbox-error {
    animation: shake 0.5s ease-in-out;
}

.checkbox-error .checkmark {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Media Sharing Section */
.social-sharing-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 100%);
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.social-sharing-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.social-sharing-section p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    min-width: 120px;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bca);
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #0d5bca, #0a4fb8);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-btn.twitter:hover {
    background: linear-gradient(135deg, #333333, #555555);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-btn.linkedin:hover {
    background: linear-gradient(135deg, #005885, #004a70);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #1da851, #17a043);
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #006ba6);
}

.social-btn.telegram:hover {
    background: linear-gradient(135deg, #006ba6, #005a8a);
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #ff0050, #cc0040);
}

.social-btn.tiktok:hover {
    background: linear-gradient(135deg, #cc0040, #b30038);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #10b981;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    animation: slideInUp 0.5s ease-out;
}

.cookie-banner-text h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #f9fafb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner-text h3::before {
    content: '🍪';
    font-size: 18px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
    color: #e5e7eb;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-banner-buttons .btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(10px);
}

.cookie-banner-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner-buttons .btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
}

.cookie-banner-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-banner-text h3 {
        font-size: 18px;
        justify-content: center;
    }
    
    .cookie-banner-text p {
        font-size: 14px;
    }
    
    .cookie-banner-buttons {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    
    .cookie-banner-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}