/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background: #ffffff;
    min-height: 100vh;
}

/* 공용 컨테이너 */
.eye-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 인트로 섹션 */
.eye-intro-section {
    padding: 150px 20px 80px;
    background: #ffffff;
}

.intro-header {
    text-align: center;
    margin-bottom: 90px;
}

.intro-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 8px;
    color: #A6756A;
    margin-bottom: 20px;
}

.intro-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* 걱정 끝 섹션 */
.concerns-solution-section {
    padding: 10px 20px;
    background: #fff;
    text-align: center;
}

.concerns-text p {
    font-size: 34px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-bottom: 50px;
}

.solution-text h2 {
    font-size: 40px;
    color: #A6756A;
    font-weight: 600;
    line-height: 1.4;
}

/* 애교살 섹션 */
.aegyo-sal-section {
    padding: 80px 20px;
    text-align: center;
}
.aegyo-sal-image img {
    max-width: 100%;
    margin-bottom: 40px;
}
.aegyo-sal-text h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}
.aegyo-sal-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* 전후 비교 섹션 */
.comparison-section {
    padding: 100px 20px;
    background-color: #f8f8f8;
    text-align: center;
}
.comparison-header {
    margin-bottom: 60px;
}
.comparison-header .label {
    font-size: 14px;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 15px;
}
.comparison-header h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.comparison-item img {
    width: 100%;
    margin-bottom: 20px;
}
.comparison-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* 부작용 DOWN 섹션 */
.side-effects-section {
    padding: 100px 20px;
    text-align: center;
}
.side-effects-header h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 60px;
}
.side-effects-header span {
    font-weight: 700;
    color: #A6756A;
}
.side-effects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.side-effects-item img {
    width: 100%;
    margin-bottom: 25px;
}
.side-effects-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.side-effects-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 수술방법 섹션 */
.method-section {
    padding: 100px 20px;
    background: #f8f8f8;
}
.method-header {
    text-align: center;
    margin-bottom: 80px;
}
.method-header h2 {
    font-size: 36px;
    font-weight: bold;
}
.method-header span {
    color: #A6756A;
}
.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.step-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.step-number {
    font-size: 16px;
    font-weight: 600;
    color: #A6756A;
    margin-bottom: 8px;
}
.step-title {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* 반응형 - 태블릿 & 모바일 */
@media (max-width: 768px) {
    .intro-title, .comparison-header h2 {
        font-size: 28px;
    }
    .aegyo-sal-text h3, .side-effects-header h2 {
        font-size: 24px;
    }
    .aegyo-sal-text p {
        font-size: 16px;
    }
    .comparison-grid, .side-effects-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .method-header h2 {
        font-size: 28px;
    }
    .method-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .eye-intro-section {
        padding: 150px 20px 0px;}

    .concerns-solution-section {
        padding: 0px 20px 0px;
    }
    .concerns-text p {
        font-size: 22px;
    }
    .solution-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .method-steps {
        grid-template-columns: 1fr;
    }
}