/* Section 4: What You Will Learn Styles */
.learning-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 40px 20px;
}

.learning-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 1rem;
    color: #616161;
    font-weight: 500;
}

/* Modules List */
.modules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: transform 0.2s ease;
}

.module-item:hover {
    transform: translateX(8px);
}

/* Module Icon */
.module-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon svg {
    width: 26px;
    height: 26px;
}

/* Module Content */
.module-content {
    flex: 1;
    padding-top: 2px;
}

.module-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.module-content p {
    font-size: 0.9rem;
    color: #616161;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .learning-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 20px;
    }

    .learning-container {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .modules-list {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .module-item {
        gap: 1rem;
    }

    .module-icon {
        width: 44px;
        height: 44px;
    }

    .module-icon svg {
        width: 24px;
        height: 24px;
    }

    .module-content h3 {
        font-size: 1rem;
    }

    .module-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .learning-section {
        padding: 40px 20px;
    }

    .learning-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header .subtitle {
        font-size: 0.9rem;
    }

    .modules-list {
        gap: 1.2rem;
    }

    .module-item {
        gap: 0.9rem;
    }

    .module-icon {
        width: 40px;
        height: 40px;
    }

    .module-icon svg {
        width: 22px;
        height: 22px;
    }

    .module-content h3 {
        font-size: 0.95rem;
    }

    .module-content p {
        font-size: 0.8rem;
    }
}
