/* Responsive Styles for index.html */

* {
    box-sizing: border-box;
}

@media (max-width: 768px) {

    /* General Mobile Styles */
    body {
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: 600;
        line-height: 1.3;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        display: none;
    }

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

/* About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-icon {
        margin-bottom: 20px;
    }
}
