.section-02 {
    padding: 60px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    display: flex;
    align-items: center;
    padding: 40px 0;
    gap: 60px;
}

.card.reverse {
    flex-direction: row-reverse;
}

.card-content {
    flex: 1;
}

.card-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #2c3e50;
}

.sub-text {
    font-size: 18px;
    line-height: 1.6;
    color: #474747;
    font-weight: 600;
    margin-bottom: 20px;
}

.desc-text {
    font-size: 18px;
    line-height: 1.6;
    color: #474747;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn {
    padding: 12px 24px;
    background-color: #3b5998;
    color: #FFF;
    border: none;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2d4373;
}

.highlight {
    font-size: 25px;
    color: #353535;
    font-weight: 700;
}

.link-group {
    display: flex;
    gap: 20px;
}

.link-btn {
    font-size: 20px;
    color: #4E5968;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .section-02 {
        padding: 50px 0;
    }
    
    .card {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    
    .card.reverse {
        flex-direction: column;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .sub-text,
    .desc-text {
        font-size: 14px;
    }
    
    .btn-group {
        flex-wrap: wrap;
    }
    
    .btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .highlight {
        font-size: 16px;
    }
    
    .link-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 20px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .sub-text,
    .desc-text {
        font-size: 13px;
    }
}