
/* Responsive CSS Enhancements */

/* General Styles for Mobile Devices */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    h1, h2, h3 {
        font-size: smaller;
    }

    /* Optimize image scaling */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

    /* Optimize video scaling */
    video {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

    /* Hero Section Adjustments */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-video {
        margin-top: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Features Section Adjustments */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1rem;
    }

    /* Blog Section Adjustments */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 200px;
    }

    /* Footer Adjustments */
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

/* Ultra-small screens (mobile phones) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Adjust FAQ styles */
    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}
