@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1199.98px) {
    h1 {
        font-size: 2.6rem;
        margin-bottom: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    .top-banner {
        padding: 14rem 0 8rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --nav-height: 70px;
    }
    
    h1 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    
    .top-banner {
        padding: 12rem 0 7rem;
    }
    
    .wrapper {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .text-content {
        width: 85%;
    }
    
    .main-btn, .white-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.2rem;
        margin-bottom: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
        line-height: 2rem;
    }
    
    .top-banner {
        padding: 10rem 0 6rem;
    }
    
    .wrapper {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .text-content {
        width: 100%;
    }
    
    .counter-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --nav-height: 60px;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }
    
    .top-banner {
        padding: 8rem 0 5rem;
    }
    
    .main-btn, .white-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .white-btn {
        margin-left: 0 !important;
        margin-top: 1rem !important;
    }
    
    .counter-section h2 {
        font-size: 1.5rem;
    }
    
    .counter-section p {
        font-size: 0.9rem;
    }
}

@media (max-height: 700px) and (orientation: landscape) {
    .top-banner {
        padding: 8rem 0 5rem;
    }
}

@media print {
    .navigation-wrap,
    .footer-section {
        display: none !important;
    }
    
    body {
        padding: 1cm;
        font-size: 12pt;
        color: #000;
        background: #fff !important;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    .no-print {
        display: none !important;
    }
}