@media (min-width: 768px) {
    :root {
        --container-padding: 40px;
    }
    .hero-title {
        font-size: 56px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 42px;
    }
    .hero-section {
        padding: 120px 0;
    }
    section {
        padding: 120px 0;
    }
    .usp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    :root {
        --container-padding: 20px;
        --spacing-xxl: 60px;
        --spacing-lg: 30px;
    }
    h1, h2, h3, h4, h5, h6 {
        hyphens: auto;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    body {
        font-size: 16px;
    }
    .hero-section {
        padding: var(--spacing-xl) 0;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    section {
        padding: var(--spacing-xl) 0;
    }
    .usp-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    .service-card {
        padding: var(--spacing-md);
    }
    .cta-box {
        padding: var(--spacing-lg);
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    .footer-brand {
        align-items: center;
    }
    .footer-links {
        align-items: center;
    }
    .footer-language-switcher {
        align-items: center;
    }
    .header-content {
        justify-content: space-between;
    }
    .language-switcher {
        margin-left: auto;
    }
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-text {
        margin-bottom: var(--spacing-sm);
    }
    .cookie-banner-actions {
        justify-content: center;
        width: 100%;
    }
    .site-logo {
        height: 70px;
        min-width: 200px;
    }
    .cta-button {
        padding: 10px 24px;
        font-size: 15px;
    }
    .cta-button.large {
        padding: 14px 36px;
        font-size: 16px;
    }
}
@media (max-width: 400px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    .hero-title {
        font-size: 24px;
    }
    .section-title {
        font-size: 22px;
    }
    .site-header {
        width: 100%;
    }
    .header-content {
        width: 100%;
        padding: 0 var(--container-padding);
    }
    .language-switcher {
        margin-left: auto;
        flex-shrink: 0;
    }
    .site-logo {
        flex-shrink: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 24px;
    }
    .cta-box {
        padding: var(--spacing-md);
    }
}
