﻿@charset "UTF-8";

/* Business Page */
.business-section {
    background: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.business-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0e0e2;
}

.business-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.business-subtitle {
    font-size: 18px;
    color: #c9979b;
}

/* Info Cards */
.business-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.info-card {
    background: linear-gradient(135deg, #fdf8f8 0%, #f9f0f1 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 280px;
    box-shadow: 0 4px 15px rgba(201, 151, 155, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9979b 0%, #e8b4b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 24px;
    color: #fff;
}

.info-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.info-main {
    font-size: 22px;
    font-weight: 600;
    color: #c9979b;
    margin-bottom: 5px;
}

.info-sub {
    font-size: 14px;
    color: #888;
}

/* Section Title */
.section-title {
    font-size: 26px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e8b4b8, #c9979b);
    border-radius: 2px;
}

/* Service List */
.service-list {
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: #fefcfc;
    border-radius: 16px;
    border: 1px solid #f5e8e9;
    padding: 35px 30px;
    width: 340px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(201, 151, 155, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 35px rgba(201, 151, 155, 0.2);
    transform: translateY(-5px);
}

/* 아이콘 이미지 */
.service-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 22px;
    color: #c9979b;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    font-size: 14px;
    color: #666;
    padding: 5px 0 5px 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    background: #e8b4b8;
    border-radius: 50%;
}

/* Notice Box */
.notice-box {
    background: linear-gradient(135deg, #f9f5f5 0%, #f5eced 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
}

.notice-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.notice-list li {
    font-size: 16px;
    color: #555;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0e0e2;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #c9979b;
}

.notice-list li strong {
    color: #333;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px;
    background: url('/images/baner01.png') center bottom no-repeat, #f5dfe1;
    background-size: cover;
    border-radius: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta.phone {
    background: #c9979b;
    color: #fff;
}

.btn-cta.phone:hover {
    background: #b88589;
}

.btn-cta.inquiry {
    background: #fff;
    color: #c9979b;
    border: 2px solid #c9979b;
}

.btn-cta.inquiry:hover {
    background: #c9979b;
    color: #fff;
}

/* Responsive - 태블릿 */
@media (max-width: 900px) {
    .business-section {
        padding: 40px 20px;
    }

    .business-header h1 {
        font-size: 28px;
    }

    .info-card {
        width: 100%;
        max-width: 300px;
    }

    .service-cards {
        gap: 20px;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
        padding: 30px 25px;
    }

    .service-image {
        height: 140px;
    }

    .notice-box {
        padding: 30px 20px;
    }
}

/* 모바일 */
@media (max-width: 480px) {
    .business-section {
        padding: 30px 15px;
    }

    .business-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .business-header h1 {
        font-size: 24px;
    }

    .business-subtitle {
        font-size: 15px;
    }

    .business-info {
        margin-bottom: 40px;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: 20px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .info-main {
        font-size: 18px;
    }

    .info-sub {
        font-size: 13px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-image {
        height: 120px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-desc {
        font-size: 13px;
    }

    .service-features li {
        font-size: 13px;
    }

    .notice-box {
        padding: 25px 15px;
    }

    .notice-list li {
        font-size: 14px;
        padding-left: 25px;
    }

    .cta-section {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
