/* 페이지 타이틀 섹션 */
.page-title {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,58,109,0.8), rgba(42,82,152,0.8));
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-title p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* 서비스 개요 섹션 */
.service-overview {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.4rem;
    color: #1a3a6d;
}

.section-title strong {
    color: #2a5298;
    font-weight: 700;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* 주요 서비스 섹션 */
.main-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #2a5298;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a3a6d;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    padding-left: 0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '';
}

/* 서비스 프로세스 섹션 */
.service-process {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 0;
    --process-line-height: 0%;
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: var(--process-line-height);
    background: #2a5298;
    transform: translateX(-50%);
    z-index: 1;
    transition: height 0.1s linear;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2a5298;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-left: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-content h3 {
    font-size: 1.3rem;
    color: #1a3a6d;
    margin-bottom: 10px;
}

.step-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* 특장점 섹션 */
.advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #2a5298;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 32px;
    color: #fff;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #1a3a6d;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* 상담 신청 섹션 */
.consultation {
    padding: 80px 0;
    background: linear-gradient(to right, #1a3a6d, #2a5298);
    color: #fff;
    text-align: center;
}

.consultation-content {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.consultation-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.consult-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #fff;
    color: #2a5298;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consult-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.consult-button i {
    margin-right: 10px;
}

/* 반응형 디자인 */
@media (min-width: 1200px) {
    .services-grid {
        max-width: 1200px;
        gap: 40px;
    }

    .service-card {
        min-height: 380px;
        padding: 40px 30px;
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
        align-items: stretch;
    }

    .service-card {
        min-height: 320px;
    }

    .service-features li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        padding: 80px 0;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .page-title p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
    }

    .step-content {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-card,
    .advantage-card {
        padding: 30px 20px;
    }

    .service-icon,
    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i,
    .advantage-icon i {
        font-size: 24px;
    }

    .consultation-content h2 {
        font-size: 2rem;
    }

    .consultation-content p {
        font-size: 1.1rem;
    }

    .consult-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* 공통 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
