@media (max-width: 991px) {

    .primary-navigation {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-section {
        min-height: 550px;
    }
}


@media (max-width: 767px) {

    .top-bar {
        display: none;
    }

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .section {
        padding: 60px 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .main-header .btn-primary {
        display: none;
    }
}