/* 설명 섹션 스타일 */
.info-section {
    padding: 80px 0;
    background-color: transparent;
}

.info-section.bg-gray {
    background-color: transparent;
}

.info-section.bg-dark {
    background-color: #1a1a1a;
    padding: 100px 0;
}

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

.info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.info-content.reverse {
    flex-direction: row-reverse;
}

.info-text {
    flex: 1.65;
    max-width: 800px;
}

.info-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.info-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #ffffff;
}

.info-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.info-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.info-image {
    flex: 1;
    max-width: 800px;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .info-section {
        padding: 60px 0;
    }

    .info-content {
        flex-direction: column;
        gap: 12px;
    }

    .info-content.reverse {
        flex-direction: column;
    }

    .info-text {
        max-width: 100%;
        text-align: center;
    }

    .info-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .info-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .info-image {
        max-width: 100%;
    }
}
