@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
    --primary-color: #d97706;
    --secondary-color: #78716c;
    --text-color: #292524;
    --text-light: #57534e;
    --card-background: #ffffff;
    --border-color: #e7e5e4;
    --button-hover: #b45309;
}

[data-theme="dark"] {
    --primary-color: #fbbf24;
    --secondary-color: #d6d3d1;
    --text-color: #f5f5f4;
    --text-light: #a8a29e;
    --card-background: #292524;
    --border-color: #44403c;
    --button-hover: #f59e0b;
}

/* Ensure good contrast in dark mode */
[data-theme="dark"] a {
    color: var(--primary-color);
}

[data-theme="dark"] .company-link:hover,
[data-theme="dark"] nav a:hover,
[data-theme="dark"] .footer-links a:hover {
    color: #93c5fd;
}

[data-theme="dark"] .feature {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .faq-item {
    border-color: var(--border-color);
}

[data-theme="dark"] input, 
[data-theme="dark"] textarea, 
[data-theme="dark"] select {
    background: var(--card-background);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--primary-color);
    outline-color: var(--primary-color);
}

/* Ensure store badges are visible in dark mode */
[data-theme="dark"] .store-badge img {
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

[data-theme="dark"] .store-badge:hover img {
    filter: brightness(1.1);
}

/* Improve text contrast in dark mode */
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero p,
[data-theme="dark"] .feature h3,
[data-theme="dark"] .content-section h2 {
    color: var(--text-color);
}

/* Ensure FAQ categories are clearly visible */
[data-theme="dark"] .faq-category h3 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Improve logo visibility in dark mode */
[data-theme="dark"] .logo {
    color: var(--text-color);
}

/* Ensure good contrast for skip link in dark mode */
[data-theme="dark"] .skip-link {
    background: var(--primary-color);
    color: var(--card-background);
}

/* Improve mobile menu visibility in dark mode */
[data-theme="dark"] nav.mobile-nav-menu {
    background: #1a1a1a !important;
    border-left: 3px solid #fbbf24 !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8) !important;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.7;
    background: url('../assets/background_mobile.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

/* Desktop background for larger screens */
@media (min-width: 768px) {
    body {
        background: url('../assets/background_desktop.png') center center no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
}

/* Light overlay to make background much lighter */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    pointer-events: none;
    z-index: -1;
}

/* Dark overlay for dark mode */
[data-theme="dark"] body::before {
    background: rgba(0, 0, 0, 0.5);
}

/* Glass effect content sections for better readability */
.content-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

[data-theme="dark"] .content-section {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Clean transparent header */
header {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Hide the company bar completely */
.company-bar {
    display: none;
}


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

/* Base header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    backdrop-filter: none;
    background: transparent;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Large desktop header (>1200px) - More space for large logo */
@media (min-width: 1201px) {
    header {
        padding: 32px 0;
    }
}

/* Desktop header (769-1200px) - Balanced spacing */
@media (min-width: 769px) and (max-width: 1200px) {
    header {
        padding: 28px 0;
    }
}

/* Tablet header (481-768px) - Standard spacing */
@media (min-width: 481px) and (max-width: 768px) {
    header {
        padding: 24px 0;
    }
}

/* Mobile header (<481px) - Compact spacing */
header {
    padding: 16px 0;
}

/* Base logo styling */
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: scale(1.02);
}

/* Large desktop logo (>1200px) - Maximum prominence */
@media (min-width: 1201px) {
    .logo {
        font-size: 4.4em;
    }
    
    .logo img {
        width: 160px;
        height: 160px;
        margin-right: 24px;
    }
}

/* Desktop logo (769-1200px) - Prominent but balanced */
@media (min-width: 769px) and (max-width: 1200px) {
    .logo {
        font-size: 3.8em;
    }
    
    .logo img {
        width: 140px;
        height: 140px;
        margin-right: 22px;
    }
}

/* Tablet logo (481-768px) - Current desktop size */
@media (min-width: 481px) and (max-width: 768px) {
    .logo {
        font-size: 2.2em;
    }
    
    .logo img {
        width: 80px;
        height: 80px;
        margin-right: 18px;
    }
}

/* Default mobile logo (<481px) - Compact for small screens */
.logo {
    font-size: 1.4em;
}

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

/* Base navigation styling */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Large desktop navigation (>1200px) - More space for larger logo */
@media (min-width: 1201px) {
    nav ul {
        gap: 40px;
    }
    
    nav a {
        padding: 10px 18px;
        font-size: 1.1em;
    }
}

/* Desktop navigation (769-1200px) - Balanced spacing */
@media (min-width: 769px) and (max-width: 1200px) {
    nav ul {
        gap: 35px;
    }
    
    nav a {
        padding: 9px 17px;
        font-size: 1.05em;
    }
}

/* Tablet navigation (481-768px) - Standard spacing */
@media (min-width: 481px) and (max-width: 768px) {
    nav ul {
        gap: 25px;
    }
    
    nav a {
        padding: 8px 14px;
        font-size: 1em;
    }
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Base language switcher and theme toggle styling */
.language-switcher {
    margin-left: 25px;
}

.language-switcher select {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--card-background);
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

.dark-mode-toggle {
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Large desktop controls (>1200px) - Larger for better balance */
@media (min-width: 1201px) {
    .language-switcher {
        margin-left: 35px;
    }
    
    .language-switcher select {
        padding: 10px 12px;
        font-size: 1.1em;
        border-radius: 6px;
    }
    
    .dark-mode-toggle {
        margin-left: 20px;
        gap: 10px;
    }
}

/* Desktop controls (769-1200px) - Balanced sizing */
@media (min-width: 769px) and (max-width: 1200px) {
    .language-switcher {
        margin-left: 30px;
    }
    
    .language-switcher select {
        padding: 9px 10px;
        font-size: 1.05em;
        border-radius: 5px;
    }
    
    .dark-mode-toggle {
        margin-left: 18px;
        gap: 9px;
    }
}

/* Tablet controls (481-768px) - Standard sizing */
@media (min-width: 481px) and (max-width: 768px) {
    .language-switcher {
        margin-left: 20px;
    }
    
    .language-switcher select {
        padding: 8px;
        font-size: 1em;
    }
    
    .dark-mode-toggle {
        margin-left: 15px;
        gap: 8px;
    }
}

/* Base theme switch styling */
.theme-switch {
    position: relative;
    width: 54px;
    height: 28px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #64748b;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15), inset 0 1px 2px rgba(255,255,255,0.8);
}

/* Large desktop theme switch (>1200px) - Larger for better proportion */
@media (min-width: 1201px) {
    .theme-switch {
        width: 64px;
        height: 34px;
        border-radius: 17px;
    }
}

/* Desktop theme switch (769-1200px) - Slightly larger */
@media (min-width: 769px) and (max-width: 1200px) {
    .theme-switch {
        width: 58px;
        height: 30px;
        border-radius: 15px;
    }
}

.theme-switch:hover {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.8);
    border-color: #475569;
}

/* Base theme switch slider styling */
.theme-switch-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2);
    border: 1px solid #cbd5e1;
}

/* Large desktop theme switch slider (>1200px) */
@media (min-width: 1201px) {
    .theme-switch-slider {
        width: 26px;
        height: 26px;
        top: 2px;
        left: 2px;
    }
}

/* Desktop theme switch slider (769-1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .theme-switch-slider {
        width: 22px;
        height: 22px;
        top: 2px;
        left: 2px;
    }
}

[data-theme="dark"] .theme-switch {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #1d4ed8;
    box-shadow: 0 3px 6px rgba(59, 130, 246, 0.4), inset 0 1px 2px rgba(255,255,255,0.2);
}

[data-theme="dark"] .theme-switch:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.5), inset 0 1px 2px rgba(255,255,255,0.2);
}

[data-theme="dark"] .theme-switch-slider {
    transform: translateX(26px);
    background: linear-gradient(135deg, #1f2937, #111827);
    border-color: #374151;
}

/* Large desktop dark mode slider position (>1200px) */
@media (min-width: 1201px) {
    [data-theme="dark"] .theme-switch-slider {
        transform: translateX(34px);
    }
}

/* Desktop dark mode slider position (769-1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    [data-theme="dark"] .theme-switch-slider {
        transform: translateX(30px);
    }
}

.theme-icon {
    font-size: 16px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.theme-icon:first-child {
    color: #f59e0b;
}

.theme-icon:last-child {
    color: #4f46e5;
}

[data-theme="dark"] .theme-icon:first-child {
    color: #fbbf24;
}

[data-theme="dark"] .theme-icon:last-child {
    color: #a5b4fc;
}

.tab-content {
    display: none;
    padding-top: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

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

.hero {
    text-align: center;
    padding: 60px 0 80px;
    position: relative;
}

.hero h1 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
    letter-spacing: -0.01em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #334155;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .hero h1 {
    color: #f8fafc;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .hero p {
    color: #e2e8f0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 48px;
}

.store-badge {
    display: inline-block;
    width: 160px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.store-badge:hover {
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.store-badge img {
    width: 100%;
    height: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 28px 24px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.95);
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature img.loading {
    opacity: 0.5;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.feature h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.content-section {
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h1 {
    font-size: 2.4em;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section p, .content-section li {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

/* Better list formatting */
.content-section ul {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.content-section li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.content-section li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

[data-theme="light"] .content-section li {
    background: rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--primary-color);
}

[data-theme="light"] .content-section li:hover {
    background: rgba(0, 0, 0, 0.04);
}

.content-section li strong {
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: 600;
    min-width: 140px;
}

.content-section li span {
    color: var(--text-color);
    font-weight: 500;
}

.content-section .feature p {
    text-align: center;
    margin-bottom: 12px;
}

.content-section .feature h3 {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.faq-item {
    background: var(--faq-item-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.2em;
    list-style: none;
    transition: background-color 0.3s ease;
}

.faq-item summary:hover {
    background-color: var(--faq-summary-hover);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary {
    color: var(--primary-color);
    background-color: var(--faq-summary-open);
}

.faq-item div {
    padding: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    background: var(--card-background);
    transition: all 0.3s ease;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.contact-form button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 48px 0;
    margin-top: 60px;
    border: none;
    color: var(--secondary-color);
    background: transparent;
    backdrop-filter: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

/* Company bar styles */
.company-bar {
    background: var(--company-bar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.company-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: var(--primary-color);
}

.back-arrow {
    margin-right: 8px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    top: 6px;
    opacity: 1;
    pointer-events: auto;
}

/* Mobile hamburger menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5em;
    cursor: pointer;
    padding: 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, z-index 0.3s ease;
    z-index: 999;
    position: relative;
    min-width: 44px;
    min-height: 44px;
}

/* Higher z-index when menu is active */
.mobile-menu-toggle.active {
    z-index: 1003;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile navigation overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

nav.mobile-nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    height: 100vh !important;
    height: 100% !important;
    background: #ffffff !important;
    padding: 80px 20px 20px !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    z-index: 1002 !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    overflow-y: auto !important;
    border-left: 3px solid #d97706 !important;
    display: block !important;
    visibility: visible !important;
}

nav.mobile-nav-menu.active {
    transform: translateX(0) !important;
}

nav.mobile-nav-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

nav.mobile-nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
    list-style: none !important;
}

nav.mobile-nav-menu a {
    display: block !important;
    padding: 16px 0 !important;
    color: #292524 !important;
    text-decoration: none !important;
    font-size: 1.1em !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #e7e5e4 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: left !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

nav.mobile-nav-menu a:hover,
nav.mobile-nav-menu a.active {
    color: #d97706 !important;
    background: rgba(217, 119, 6, 0.1) !important;
}

/* Dark mode styling for mobile menu links */
[data-theme="dark"] nav.mobile-nav-menu a {
    color: #f5f5f4 !important;
    border-bottom-color: #44403c !important;
}

[data-theme="dark"] nav.mobile-nav-menu a:hover,
[data-theme="dark"] nav.mobile-nav-menu a.active {
    color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.1) !important;
}

nav.mobile-nav-menu .mobile-nav-controls {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e7e5e4 !important;
    width: 100% !important;
    display: block !important;
}

[data-theme="dark"] nav.mobile-nav-menu .mobile-nav-controls {
    border-top-color: #44403c !important;
}

nav.mobile-nav-menu .mobile-nav-controls .language-switcher {
    margin: 0 0 20px 0 !important;
    width: 100% !important;
    display: block !important;
}

nav.mobile-nav-menu .mobile-nav-controls .language-switcher select {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1.1em !important;
    background: #ffffff !important;
    color: #292524 !important;
    border: 1px solid #e7e5e4 !important;
    border-radius: 5px !important;
    box-sizing: border-box !important;
    display: block !important;
}

[data-theme="dark"] nav.mobile-nav-menu .mobile-nav-controls .language-switcher select {
    background: #374151 !important;
    color: #f5f5f4 !important;
    border-color: #44403c !important;
}

nav.mobile-nav-menu .mobile-nav-controls .dark-mode-toggle {
    justify-content: center !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hide desktop navigation */
    header nav {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    /* Mobile menu is handled by transform in main styles */
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 2em;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.1em;
        margin-bottom: 32px;
        line-height: 1.6;
    }
    
    .cta-buttons {
        gap: 16px;
        margin-top: 32px;
    }
    
    .store-badge {
        width: 140px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 60px 0;
    }
    
    .feature {
        padding: 24px 20px;
    }
    
    .content-section {
        padding: 40px 24px;
        margin-bottom: 32px;
        border-radius: 16px;
    }
    
    .content-section h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .content-section h2 {
        font-size: 1.8em;
        margin-bottom: 24px;
    }
    
    .content-section p,
    .content-section li {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .contact-form {
        padding: 0;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 14px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .contact-form button {
        padding: 16px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* Theme switch sizing handled by responsive breakpoints above */
}