/* Business 페이지 스타일 */

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

.business-section {
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.business-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #cccccc;
}

.consulting-image-container {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto 50px;
    position: relative;
    min-width: 300px;
    min-height: 200px;
}

.consulting-image-container img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 300px;
    min-height: 200px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.consulting-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.consulting-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
    margin-bottom: 50px;
}

.service-item {
    background-color: #005831;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 35px;
    border-radius: 999px;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 88, 49, 0.2);
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 88, 49, 0.3);
    background-color: #006d3f;
}

.consulting-description {
    background-color: #ffffff;
    color: #333;
    font-size: 20px;
    line-height: 2;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid #005831;
    position: relative;
}

.consulting-description::before {
    content: '"';
    font-size: 80px;
    color: #005831;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.consulting-description::after {
    content: '"';
    font-size: 80px;
    color: #005831;
    opacity: 0.2;
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .business-container {
        padding: 40px 15px;
    }

    .business-section {
        padding: 60px 15px;
        min-height: auto;
    }

    .business-section h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .consulting-image-container {
        margin-bottom: 40px;
        min-width: 250px;
        min-height: 150px;
    }

    .consulting-image-container img {
        min-width: 250px;
        min-height: 150px;
        border-radius: 12px;
    }

    .consulting-services {
        gap: 15px;
        margin-bottom: 40px;
    }

    .service-item {
        font-size: 18px;
        padding: 15px 28px;
        min-width: 100px;
    }

    .consulting-description {
        font-size: 18px;
        padding: 40px 40px;
        border-radius: 15px;
    }

    .consulting-description::before,
    .consulting-description::after {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .business-section h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .consulting-image-container {
        margin-bottom: 30px;
        min-width: 200px;
        min-height: 120px;
    }

    .consulting-image-container img {
        min-width: 200px;
        min-height: 120px;
        border-radius: 10px;
    }

    .consulting-services {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .service-item {
        font-size: 16px;
        padding: 14px 25px;
        min-width: auto;
        width: 100%;
    }

    .consulting-description {
        font-size: 16px;
        padding: 30px 25px;
        border-radius: 12px;
        line-height: 1.8;
    }

    .consulting-description::before {
        top: 10px;
        left: 15px;
        font-size: 50px;
    }

    .consulting-description::after {
        bottom: 10px;
        right: 15px;
        font-size: 50px;
    }
}

