/* lifting.css의 기본 스타일 복사 + 눈성형 전용 스타일 */

* {
    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;
}

.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px; }

.section-header { 
    text-align: center; 
    margin-bottom: 80px; }

.section-header h2 { 
    font-size: 36px; 
    font-weight: bold; }

.section-header span { 
    color: #A6756A; }

/* 인트로 섹션 */
.aegyo-sal-section {
    padding: 0px 20px 10px 20px;
    text-align: center;
}
.aegyo-sal-image img {
    max-width: 100%;
    margin-bottom: 40px;
}


/* 1. 메인 배너 */

.nose-intro-section {
    padding: 150px 20px 40px;
    background: #ffffff;
}

.nose-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.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;
}

/* Why JN 섹션 */
.why-section {
    padding: 50px 20px;
    background: #fff;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-content {
    text-align: center;
}

.why-title {
    font-size: 44px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    margin-bottom: 40px;
}

.why-title span{
    color: #A6756A;
    font-weight: 600;
}

.why-subtitle {
    font-size: 22px;         
    font-weight: 600;        
    color: #333;            
    line-height: 1.7;       
    margin-bottom: 40px;     
}

.why-content p {
    font-size: 16px;
    font-weight: 400;
    color: #555;             
    line-height: 1.8;     
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 30px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 2. 인트로 */
.intro-section { padding: 120px 20px 80px; text-align: center; }
.intro-content h2 { font-size: 36px; margin-bottom: 30px; font-weight: bold; }
.intro-content p { font-size: 18px; color: #555; line-height: 1.8; }

/* 3. 수술 정보 */
.info-section { padding: 80px 20px; background: #f8f9fa; }
.info-grid { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; }
.info-item { border-left: 1px solid #ddd; flex: 1; min-width: 150px; }
.info-item:first-child { border-left: none; }
.info-item h3 { font-size: 18px; color: #A6756A; margin-bottom: 10px; font-weight: 600; }
.info-item p { font-size: 20px; font-weight: bold; }

/* 4. 추천 대상 */
.recommend-section { padding: 100px 20px; }
.recommend-content { display: flex; align-items: center; gap: 80px; }
.recommend-text { flex: 1; }
.recommend-label { font-size: 16px; font-weight: 600; letter-spacing: 10px; color: #A6756A; margin-bottom: 30px; }
.recommend-title { font-size: 42px; font-weight: bold; line-height: 1.3; margin-bottom: 60px; }
.recommend-list { list-style: none; }
.recommend-list li { font-size: 18px; color: #333; line-height: 2.2; padding-left: 20px; position: relative; }
.recommend-list li::before { content: '•'; position: absolute; left: 0; color: #000; font-weight: bold; }
.recommend-image { flex: 1; max-width: 600px; }
.recommend-image img { width: 100%; border-radius: 0 70px; }

/* Special Point 섹션 */
.special-point-section {
    padding: 100px 20px;
    background: #f8f9fa; /* 밝은 회색 배경으로 구분 */
}

.special-intro {
    text-align: center;
    margin-bottom: 100px;
}

.special-intro .intro-main-title {
    font-size: 28px;
    font-weight: 600;
    color: #A6756A;
    margin-bottom: 25px;
}

.special-intro .intro-subtext {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.points-header {
    text-align: center;
    margin-bottom: 80px;
}

.points-header .points-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
}

.points-header .points-sub-title {
    font-size: 30px;
    color: #A6756A;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 10px;
}

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

.point-image {
    width: 100%;
    margin-bottom: 30px;
}

.point-image img {
    width: 100%;
    display: block;
}

.point-content {
    text-align: center;
}

.point-number {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.point-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* 8. 복코수술 방법 */
.bulbous-method-section {
    padding: 100px 20px;
}
.bulbous-method-section .method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3열 그리드 레이아웃 */
    gap: 30px;
    align-items: start;
}
.bulbous-method-section .method-item {
    text-align: center; /* 내부 요소들을 중앙 정렬 */
    padding: 0;
}
.bulbous-method-section .method-label {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background: #A6756A;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}
.bulbous-method-section .method-image {
    width: 100%;
}
.bulbous-method-section .method-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.bulbous-method-section .method-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* 9. 콧볼축소 방법 */
.alar-reduction-section {
    padding: 100px 20px;
    background: #f8f9fa;
}
.alar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.alar-item {
    padding: 40px;
    text-align: center;
}
.alar-item h3 { /* CASE 01 */
    font-size: 20px;
    color: #A6756A;
    font-weight: bold;
    margin-bottom: 10px;
}
.alar-item h4 { /* 콧구멍이 큰 경우 */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.alar-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}
.alar-item .alar-image img {
    width: 80%;
}

/* 반응형 */
@media (max-width: 1200px) {
    .sub-menu { padding: 0; }
    .sub-menu-item a { font-size: 15px; }
    .hero-title { font-size: 48px; }
    .feature-grid {
        gap: 30px;
    }
    .points-grid {
        gap: 30px;
    }
    .feature-image {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .recommend-content { flex-direction: column; }


}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero-description { font-size: 18px; }
    .intro-content h2, .recommend-title, .section-header h2, .care-title { font-size: 28px; }
    .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .info-item { border-left: none; }

    .intro-title { font-size: 30px; margin-bottom: 30px; font-weight: bold; }

    .why-section {
        padding: 60px 20px;
    }
    
    .why-title {
        font-size: 24px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-image {
        height: 250px;
    }


    .recommend-section, .points-section, .method-section, .ba-section { padding: 60px 20px; }
    .autologous-tissue-section {
        padding: 60px 20px;
    }

    .special-point-section {
        padding: 60px 20px;
    }

    .special-intro {
        margin-bottom: 50px;
    }

    .special-intro .intro-main-title {
        font-size: 22px;
    }
    
    .special-intro .intro-subtext {
        font-size: 15px;
    }

    .points-header {
        margin-bottom: 60px;
    }

    .points-header .points-main-title {
        font-size: 28px;
    }
    
    .points-header .points-sub-title {
        font-size: 20px;
    }

    .points-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .bulbous-method-section .method-grid {
        grid-template-columns: 1fr; /* 모바일에서는 다시 세로로 쌓음 */
        gap: 50px;
    }
    .alar-item {
        padding: 20px 0;
    }

}

/* 작은 모바일 */
@media (max-width: 480px) {
    .recommend-section {
        padding: 50px 15px;
    }
    
    .recommend-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .recommend-list li {
        font-size: 14px;
        line-height: 2;
    }
}
