/* css/responsive.css */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .site-header .container {
        height: 60px;
    }

    .main-nav {
        display: none; /* Ideally replace with a hamburger menu */
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .features-grid {
        flex-direction: column;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}