/* section2.css */

#section2 {
    background-color: #F5F6F7;
    padding: 96px 80px;
}

.section2-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.section2-left,
.section2-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.section2-left {
    align-items: center;
    justify-content: center;
}

.section2-left img {
    width: 432px;
    height: 160px;
}

.section2-title {
    font-family: 'Pretendard-ExtraBold';
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

.section2-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #262D39B8;
    margin-top: 24px;
}

/* 미디어 쿼리 */
@media (max-width: 1079px) {
    #section2 {
        padding: 48px 20px;
    }

    .section2-container {
        max-width: unset;
        flex-direction: column;
        align-items: unset;
        gap: 24px;
    }

    .section2-left {
        width: 100%;
        padding: 0 20px;
    }

    .section2-left img {
        width: 240px;
        height: auto;
    }

    .section2-right {
        width: 100%;
    }

    .section2-title {
        font-size: 24px;
        text-align: center;
    }

    .section2-desc {
        font-size: 16px;
        text-align: center;
        margin-top: 8px;
    }
}