/* 세무컨설팅 페이지 스타일 */

/* 서비스 아이템 스타일 */
.service-six__item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-six__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-six__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-six__item:hover::before {
    transform: scaleX(1);
}

/* 아이템 헤더 스타일 */
.item-head {
    text-align: center;
    margin-bottom: 20px;
}

.item-head .title {
    color: #333;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
}

.item-head .icon {
    display: inline-block;
    margin-bottom: 20px;
}

.item-head .icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* 텍스트 스타일 */
.service-six__item p.title {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
}

/* CTA 섹션 스타일 */
.contact-six-aera2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

.contact-six__item h2.title {
    color: #0d6efd;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.contact-six__item h2.title.mcc {
    color: #0d6efd;
}

.contact-six__item p {
    color: #fff;
    font-size: 36px;
    line-height: 1.3;
}

/* 섹션 패딩 조정 */
.testimonial-nine-area {
    padding-top: 130px;
    padding-bottom: 100px;
}

.testimonial-nine-area.pt-lg-100 {
    padding-top: 100px;
}

.testimonial-nine-area.pb-lg-100 {
    padding-bottom: 100px;
}

/* 제목 스타일 */
h3.fs-40 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

h3.fs-40 .mcc {
    color: #0d6efd;
}

/* 문단 스타일 */
p.fs-22 {
    font-size: 22px;
    line-height: 32px;
    color: #666;
}

p.fs-22 .fw-700 {
    font-weight: 700;
    color: #333;
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .service-six__item {
        margin-bottom: 30px;
    }

    .contact-six__item h2.title {
        font-size: 35px;
    }

    .contact-six__item p {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .service-six__item {
        padding: 20px;
    }

    .item-head .title {
        font-size: 24px;
    }

    .item-head .icon img {
        width: 60px;
        height: 60px;
    }

    h3.fs-40 {
        font-size: 32px;
    }

    p.fs-22 {
        font-size: 18px;
        line-height: 28px;
    }

    .contact-six-aera2 {
        padding: 60px 0;
    }
}