/* Responsive Layout */
@media (max-width: 768px) {
    body {
        background-size: contain; /* Adjust to fit smaller screens */
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-image-container {
        width: 280px; /* Smaller width for mobile */
        height: calc(280px * 2688 / 1242); /* Maintain aspect ratio */
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .dynamic-header {
        padding: 0.5rem 1rem;
    }

    .dynamic-header .title {
        font-size: 1rem;
    }

    .dynamic-header .buttons-container a img {
        width: 100px;
    }
}
