/**
 * Lifting Neck Muscle Page Styles
 * 목거상/이중턱 근육 묶기 페이지 스타일시트
 */

/* ===== 기본 레이아웃 ===== */
.cont-wrap {
    margin-bottom: 0;
    padding-bottom: 110px;
    background: #f5f5f5;
}

/* ===== 히어로 섹션 (Forehead 스타일 적용) ===== */
.forehead-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    background: linear-gradient(135deg, #b5bcc0 0%, #9ca5ab 100%);
}

.forehead-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.forehead-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.forehead-hero-background img.mobile-bg {
    display: none;
}

.forehead-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 50px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    min-height: 700px;
}

.forehead-hero-text {
    z-index: 2;
}

.forehead-hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.forehead-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -1px;
}

.forehead-hero-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.forehead-hero-highlight {
    font-size: 26px;
    color: #a0a3ff;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 30px;
    word-break: keep-all;
}

.forehead-hero-note {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.forehead-hero-image {
    position: relative;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.forehead-hero-watermark {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 15px;
    white-space: nowrap;
    z-index: 0;
    text-transform: uppercase;
}

/* ===== Prologue 섹션 ===== */
.prologue-section {
    background: #fff;
    padding: 120px 0;
}

.prologue-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.prologue-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.badge-number {
    width: 30px;
    height: 2px;
    background: #e0e0e0;
    display: block;
}

.badge-text {
    font-size: 48px;
    font-weight: 300;
    color: #f0f0f0;
    letter-spacing: 2px;
}

.prologue-subtitle {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.prologue-title {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.prologue-desc {
    color: #555;
    line-height: 1.8;
}

.desc-highlight {
    font-size: 16px;
    color: #d4a574;
    margin-bottom: 30px;
    line-height: 1.7;
}

.desc-point {
    margin-bottom: 25px;
}

.desc-point strong {
    display: block;
    font-size: 15px;
    color: #222;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.prologue-image {
    position: relative;
}

.prologue-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    filter: grayscale(100%);
}

.doctor-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: #a0a3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-info {
    color: #fff;
}

.badge-label {
    font-size: 11px;
    color: #ccc;
    margin-bottom: 3px;
}

.badge-name {
    font-size: 15px;
    font-weight: 600;
}

/* ===== 반응형: 히어로 & Prologue ===== */
@media (max-width: 992px) {
    .forehead-hero-container,
    .prologue-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .forehead-hero-section {
        padding: 80px 0;
        min-height: auto;
    }

    .forehead-hero-title {
        font-size: 42px;
    }

    .forehead-hero-highlight {
        font-size: 22px;
    }

    .prologue-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .forehead-hero-section {
        min-height: 700px;
    }

    .forehead-hero-background img.pc-bg {
        display: none;
    }

    .forehead-hero-background img.mobile-bg {
        display: block;
    }

    .forehead-hero-container {
        padding: 50px 25px;
        gap: 0;
        grid-template-columns: 1fr;
        min-height: 700px;
    }

    .forehead-hero-image {
        display: none;
    }

    .forehead-hero-text {
        position: relative;
        z-index: 2;
        padding: 0;
    }

    .forehead-hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.9);
    }

    .forehead-hero-title {
        font-size: 48px;
        color: #222;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .forehead-hero-desc {
        font-size: 15px;
        color: #555;
        margin-bottom: 30px;
    }

    .forehead-hero-highlight {
        font-size: 22px;
        color: #ff9aa2;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .forehead-hero-note {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
    }

    .forehead-hero-watermark {
        font-size: 36px;
        letter-spacing: 10px;
        bottom: 20px;
        color: rgba(255, 255, 255, 0.25);
    }

    .prologue-section {
        padding: 60px 0;
    }

    .prologue-container {
        padding: 0 20px;
        gap: 40px;
    }

    .badge-text {
        font-size: 36px;
    }

    .prologue-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .desc-highlight {
        font-size: 15px;
    }

    .doctor-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 15px;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
    }

    .badge-name {
        font-size: 14px;
    }
}

    /* 목주름 설명 섹션 스타일 */
    .neck-wrinkle-description-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

    .neck-wrinkle-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
        display: grid;
        grid-template-columns: 1fr 450px;
        gap: 80px;
        align-items: center;
    }

    .neck-wrinkle-left {
        position: relative;
    }

    .neck-wrinkle-notes {
        font-size: 13px;
        color: #999;
        line-height: 1.8;
        margin-bottom: 40px;
        padding-left: 5px;
    }

    .neck-wrinkle-notes p {
        margin-bottom: 5px;
    }

    .neck-wrinkle-main-title {
        font-size: 36px;
        font-weight: 800;
        color: #d63031;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .neck-wrinkle-sub-title {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .neck-wrinkle-text {
        font-size: 16px;
        color: #666;
        line-height: 1.9;
        margin-bottom: 25px;
    }

    .neck-wrinkle-highlight {
        font-size: 16px;
        font-weight: 600;
        color: #d63031;
        line-height: 1.9;
    }

    .neck-wrinkle-footer-note {
        font-size: 14px;
        color: #999;
        margin-top: 40px;
        line-height: 1.7;
    }

    .neck-wrinkle-right {
        position: relative;
    }

    .neck-wrinkle-image {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .neck-wrinkle-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    @media (max-width: 992px) {
        .neck-wrinkle-description-section {
            padding: 80px 0;
        }

        .neck-wrinkle-container {
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 0 40px;
        }

        .neck-wrinkle-main-title {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .neck-wrinkle-sub-title {
            font-size: 24px;
            margin-bottom: 25px;
        }

        .neck-wrinkle-text {
            font-size: 15px;
            margin-bottom: 20px;
        }

        .neck-wrinkle-highlight {
            font-size: 15px;
        }

        .neck-wrinkle-footer-note {
            font-size: 13px;
            margin-top: 35px;
        }

        .neck-wrinkle-right {
            max-width: 450px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .neck-wrinkle-description-section {
            padding: 60px 0;
        }

        .neck-wrinkle-container {
            gap: 40px;
            padding: 0 30px;
        }

        .neck-wrinkle-notes {
            font-size: 12px;
            margin-bottom: 30px;
        }

        .neck-wrinkle-main-title {
            font-size: 26px;
            margin-bottom: 18px;
        }

        .neck-wrinkle-sub-title {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .neck-wrinkle-text {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .neck-wrinkle-highlight {
            font-size: 14px;
            line-height: 1.8;
        }

        .neck-wrinkle-footer-note {
            font-size: 12px;
            margin-top: 30px;
        }

        .neck-wrinkle-right {
            max-width: 100%;
        }
    }


    /* Prologue 섹션 스타일 */
    .neck-prologue-section {
        background: #fff;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .neck-prologue-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .neck-prologue-left {
        background: #f5f1ed;
        padding: 100px 80px;
        position: relative;
    }

    .neck-prologue-header {
        margin-bottom: 60px;
    }

    .neck-prologue-title {
        font-size: 72px;
        font-weight: 300;
        color: rgba(180, 160, 140, 0.4);
        margin-bottom: 5px;
        font-family: 'Georgia', serif;
        letter-spacing: 2px;
    }

    .neck-prologue-subtitle {
        font-size: 11px;
        font-weight: 500;
        color: #aaa;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .neck-prologue-content {
        position: relative;
    }

    .neck-prologue-main-text {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .neck-prologue-highlight {
        font-size: 18px;
        font-weight: 600;
        color: #c9935f;
        line-height: 1.7;
        margin-bottom: 50px;
    }

    .neck-prologue-details {
        font-size: 14px;
        color: #666;
        line-height: 1.9;
    }

    .neck-prologue-details p {
        margin-bottom: 15px;
    }

    .neck-prologue-right {
        position: relative;
        overflow: hidden;
    }

    .neck-prologue-image {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .neck-prologue-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .neck-prologue-watermark {
        position: absolute;
        top: 60px;
        right: 60px;
        font-size: 72px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.15);
        letter-spacing: 4px;
        line-height: 1;
    }

    .neck-prologue-watermark-sub {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 2px;
        margin-top: 10px;
    }

    .neck-prologue-signature {
        position: absolute;
        bottom: 60px;
        right: 60px;
        background: rgba(255, 255, 255, 0.95);
        padding: 20px 25px;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .neck-prologue-signature-label {
        font-size: 11px;
        color: #999;
        margin-bottom: 8px;
    }

    .neck-prologue-signature-name {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
    }

    .neck-prologue-signature-title {
        font-size: 13px;
        color: #666;
    }

    @media (max-width: 992px) {
        .neck-prologue-container {
            grid-template-columns: 1fr;
        }

        .neck-prologue-left {
            padding: 70px 50px;
        }

        .neck-prologue-title {
            font-size: 60px;
        }

        .neck-prologue-main-text {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .neck-prologue-highlight {
            font-size: 16px;
            margin-bottom: 40px;
        }

        .neck-prologue-details {
            font-size: 13px;
        }

        .neck-prologue-right {
            min-height: 500px;
        }

        .neck-prologue-watermark {
            top: 40px;
            right: 40px;
            font-size: 60px;
        }

        .neck-prologue-watermark-sub {
            font-size: 16px;
        }

        .neck-prologue-signature {
            bottom: 40px;
            right: 40px;
        }
    }

    @media (max-width: 768px) {
        .neck-prologue-left {
            padding: 50px 30px;
        }

        .neck-prologue-header {
            margin-bottom: 40px;
        }

        .neck-prologue-title {
            font-size: 48px;
        }

        .neck-prologue-subtitle {
            font-size: 10px;
        }

        .neck-prologue-main-text {
            font-size: 20px;
            margin-bottom: 25px;
        }

        .neck-prologue-highlight {
            font-size: 15px;
            margin-bottom: 30px;
        }

        .neck-prologue-details {
            font-size: 13px;
        }

        .neck-prologue-right {
            min-height: 400px;
        }

        .neck-prologue-watermark {
            top: 30px;
            right: 30px;
            font-size: 48px;
        }

        .neck-prologue-watermark-sub {
            font-size: 14px;
        }

        .neck-prologue-signature {
            bottom: 20px;
            right: 20px;
            padding: 15px 20px;
        }

        .neck-prologue-signature-name {
            font-size: 16px;
        }

        .neck-prologue-signature-title {
            font-size: 12px;
        }
    }


    /* 수술 설명 섹션 스타일 */
    .surgery-explanation-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

    .surgery-explanation-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
        display: grid;
        grid-template-columns: 1fr 550px;
        gap: 80px;
        align-items: center;
    }

    .surgery-explanation-left {
        position: relative;
    }

    .surgery-explanation-notes {
        font-size: 13px;
        color: #999;
        line-height: 1.8;
        margin-bottom: 40px;
        padding-left: 5px;
    }

    .surgery-explanation-notes p {
        margin-bottom: 5px;
    }

    .surgery-explanation-text {
        font-size: 16px;
        color: #666;
        line-height: 1.9;
    }

    .surgery-explanation-text p {
        margin-bottom: 20px;
    }

    .surgery-explanation-right {
        position: relative;
    }

    .surgery-explanation-image {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .surgery-explanation-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    @media (max-width: 992px) {
        .surgery-explanation-section {
            padding: 80px 0;
        }

        .surgery-explanation-container {
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 0 40px;
        }

        .surgery-explanation-text {
            font-size: 15px;
        }

        .surgery-explanation-right {
            max-width: 550px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .surgery-explanation-section {
            padding: 60px 0;
        }

        .surgery-explanation-container {
            gap: 40px;
            padding: 0 30px;
        }

        .surgery-explanation-notes {
            font-size: 12px;
            margin-bottom: 30px;
        }

        .surgery-explanation-text {
            font-size: 14px;
            line-height: 1.8;
        }

        .surgery-explanation-text p {
            margin-bottom: 15px;
        }

        .surgery-explanation-right {
            max-width: 100%;
        }
    }


    /* 전후사진 섹션 스타일 */
    .neck-before-after-section {
        background: #f9f9f9;
        padding: 120px 0;
        position: relative;
    }

    .neck-ba-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .neck-ba-title {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        text-align: center;
        margin-bottom: 60px;
    }

    .neck-ba-gallery {
        position: relative;
        margin-bottom: 40px;
    }

    .neck-ba-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .neck-ba-image-item {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .neck-ba-image-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .neck-gallery-nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 20px;
        color: #666;
        box-shadow: 0 2px 15px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
        z-index: 5;
    }

    .neck-gallery-nav-button:hover {
        background: #fff;
        color: #333;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .neck-gallery-nav-button.prev {
        left: -25px;
    }

    .neck-gallery-nav-button.next {
        right: -25px;
    }

    .neck-ba-filters {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .neck-filter-button {
        background: #fff;
        border: 2px solid #ddd;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 15px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .neck-filter-button:hover {
        border-color: #a0a3ff;
        color: #a0a3ff;
    }

    .neck-filter-button.active {
        background: #a0a3ff;
        border-color: #a0a3ff;
        color: #fff;
    }

    .neck-ba-notice {
        text-align: center;
        font-size: 14px;
        color: #999;
        line-height: 1.6;
    }

    @media (max-width: 992px) {
        .neck-before-after-section {
            padding: 80px 0;
        }

        .neck-ba-container {
            padding: 0 40px;
        }

        .neck-ba-title {
            font-size: 36px;
            margin-bottom: 50px;
        }

        .neck-ba-images {
            gap: 25px;
        }

        .neck-gallery-nav-button {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }

        .neck-gallery-nav-button.prev {
            left: -20px;
        }

        .neck-gallery-nav-button.next {
            right: -20px;
        }
    }

    @media (max-width: 768px) {
        .neck-before-after-section {
            padding: 60px 0;
        }

        .neck-ba-container {
            padding: 0 30px;
        }

        .neck-ba-title {
            font-size: 30px;
            margin-bottom: 40px;
        }

        .neck-ba-images {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .neck-gallery-nav-button {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .neck-gallery-nav-button.prev {
            left: 10px;
        }

        .neck-gallery-nav-button.next {
            right: 10px;
        }

        .neck-ba-filters {
            gap: 10px;
            flex-wrap: wrap;
        }

        .neck-filter-button {
            padding: 10px 25px;
            font-size: 14px;
        }

        .neck-ba-notice {
            font-size: 13px;
        }
    }


    /* 목주름의 유형 섹션 스타일 */
    .neck-wrinkle-types-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

    .neck-types-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .neck-types-title {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        margin-bottom: 60px;
    }

    .neck-types-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-bottom: 80px;
    }

    .neck-type-item {
        text-align: center;
    }

    .neck-type-image {
        width: 100%;
        height: 200px;
        background: #f5f5f5;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
    }

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

    .neck-type-name {
        font-size: 18px;
        font-weight: 700;
        color: #d63031;
        margin-bottom: 12px;
    }

    .neck-type-desc {
        font-size: 13px;
        color: #666;
        line-height: 1.7;
    }

    .neck-age-recommendations {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .neck-age-item {
        text-align: center;
        padding: 40px 30px;
        background: #f9f9f9;
        border-radius: 12px;
    }

    .neck-age-badge {
        display: inline-block;
        background: #d63031;
        color: #fff;
        padding: 8px 25px;
        border-radius: 20px;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .neck-age-title {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .neck-age-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
    }

    @media (max-width: 1200px) {
        .neck-types-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .neck-age-recommendations {
            gap: 30px;
        }
    }

    @media (max-width: 992px) {
        .neck-wrinkle-types-section {
            padding: 80px 0;
        }

        .neck-types-container {
            padding: 0 40px;
        }

        .neck-types-title {
            font-size: 36px;
            margin-bottom: 50px;
        }

        .neck-types-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        .neck-type-image {
            height: 180px;
        }

        .neck-type-name {
            font-size: 16px;
        }

        .neck-type-desc {
            font-size: 12px;
        }

        .neck-age-recommendations {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .neck-age-item {
            padding: 35px 25px;
        }
    }

    @media (max-width: 768px) {
        .neck-wrinkle-types-section {
            padding: 60px 0;
        }

        .neck-types-container {
            padding: 0 30px;
        }

        .neck-types-title {
            font-size: 30px;
            margin-bottom: 40px;
        }

        .neck-types-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        .neck-type-image {
            height: 200px;
        }

        .neck-type-name {
            font-size: 17px;
            margin-bottom: 10px;
        }

        .neck-type-desc {
            font-size: 13px;
        }

        .neck-age-item {
            padding: 30px 20px;
        }

        .neck-age-badge {
            font-size: 14px;
            padding: 7px 20px;
            margin-bottom: 15px;
        }

        .neck-age-title {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .neck-age-desc {
            font-size: 13px;
        }
    }


    /* 시술 과정 섹션 스타일 */
    .procedure-process-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .procedure-title {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        text-align: center;
        margin-bottom: 80px;
    }

    .procedure-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .procedure-step {
        background: #f9f9f9;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .procedure-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .procedure-step-number {
        background: linear-gradient(135deg, #a0a3ff 0%, #8b8ef5 100%);
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        padding: 20px;
        text-align: center;
    }

    .procedure-step-image {
        width: 100%;
        height: 280px;
        background: #e5e5e5;
        overflow: hidden;
    }

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

    .procedure-step-content {
        padding: 30px;
        background: #fff;
    }

    .procedure-step-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        text-align: center;
    }

    .procedure-step-desc {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
        text-align: center;
    }

    @media (max-width: 992px) {
        .procedure-process-section {
            padding: 80px 0;
        }

        .procedure-container {
            padding: 0 40px;
        }

        .procedure-title {
            font-size: 36px;
            margin-bottom: 60px;
        }

        .procedure-steps {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .procedure-step-image {
            height: 250px;
        }

        .procedure-step-content {
            padding: 25px;
        }

        .procedure-step-title {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .procedure-process-section {
            padding: 60px 0;
        }

        .procedure-container {
            padding: 0 30px;
        }

        .procedure-title {
            font-size: 30px;
            margin-bottom: 50px;
        }

        .procedure-step-number {
            font-size: 16px;
            padding: 15px;
        }

        .procedure-step-image {
            height: 220px;
        }

        .procedure-step-content {
            padding: 20px;
        }

        .procedure-step-title {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .procedure-step-desc {
            font-size: 14px;
        }
    }


    /* 이중턱근육묶기 섹션 스타일 */
    .double-chin-procedure-section {
        background: #f8f8f8;
        padding: 120px 0;
        position: relative;
    }

    .double-chin-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .double-chin-header {
        margin-bottom: 60px;
    }

    .double-chin-title {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        margin-bottom: 20px;
    }

    .double-chin-subtitle {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
    }

    .double-chin-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .double-chin-step {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .double-chin-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .double-chin-step-image {
        width: 100%;
        height: 240px;
        background: #f5f5f5;
        overflow: hidden;
        position: relative;
    }

    .double-chin-step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .double-chin-step-content {
        padding: 35px 25px;
        text-align: center;
    }

    .double-chin-step-number {
        font-size: 26px;
        font-weight: 800;
        color: #333;
        margin-bottom: 15px;
    }

    .double-chin-step-title {
        font-size: 20px;
        font-weight: 700;
        color: #d63031;
        margin-bottom: 15px;
    }

    .double-chin-step-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
    }

    @media (max-width: 1200px) {
        .double-chin-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 992px) {
        .double-chin-procedure-section {
            padding: 80px 0;
        }

        .double-chin-container {
            padding: 0 40px;
        }

        .double-chin-title {
            font-size: 36px;
            margin-bottom: 18px;
        }

        .double-chin-subtitle {
            font-size: 15px;
        }

        .double-chin-header {
            margin-bottom: 50px;
        }

        .double-chin-step-image {
            height: 220px;
        }

        .double-chin-step-content {
            padding: 30px 20px;
        }

        .double-chin-step-number {
            font-size: 24px;
        }

        .double-chin-step-title {
            font-size: 18px;
        }
    }

    @media (max-width: 768px) {
        .double-chin-procedure-section {
            padding: 60px 0;
        }

        .double-chin-container {
            padding: 0 30px;
        }

        .double-chin-title {
            font-size: 30px;
            margin-bottom: 15px;
        }

        .double-chin-subtitle {
            font-size: 14px;
        }

        .double-chin-header {
            margin-bottom: 40px;
        }

        .double-chin-steps {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .double-chin-step-image {
            height: 200px;
        }

        .double-chin-step-content {
            padding: 25px 20px;
        }

        .double-chin-step-number {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .double-chin-step-title {
            font-size: 17px;
            margin-bottom: 12px;
        }

        .double-chin-step-desc {
            font-size: 13px;
        }
    }


    /* 목거상 섹션 스타일 */
    .neck-lifting-procedure-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

    .neck-lifting-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .neck-lifting-header {
        margin-bottom: 60px;
    }

    .neck-lifting-title {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        margin-bottom: 25px;
    }

    .neck-lifting-desc {
        font-size: 15px;
        color: #666;
        line-height: 1.9;
        margin-bottom: 12px;
    }

    .neck-lifting-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .neck-lifting-step {
        background: #f8f8f8;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .neck-lifting-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    .neck-lifting-step-image {
        width: 100%;
        height: 260px;
        background: #e9e5e0;
        overflow: hidden;
        position: relative;
    }

    .neck-lifting-step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .neck-lifting-step-content {
        padding: 35px 25px;
        background: #fff;
    }

    .neck-lifting-step-number {
        font-size: 26px;
        font-weight: 800;
        color: #333;
        margin-bottom: 18px;
    }

    .neck-lifting-step-title {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        line-height: 1.7;
    }

    @media (max-width: 1200px) {
        .neck-lifting-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 992px) {
        .neck-lifting-procedure-section {
            padding: 80px 0;
        }

        .neck-lifting-container {
            padding: 0 40px;
        }

        .neck-lifting-title {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .neck-lifting-desc {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .neck-lifting-header {
            margin-bottom: 50px;
        }

        .neck-lifting-step-image {
            height: 240px;
        }

        .neck-lifting-step-content {
            padding: 30px 20px;
        }

        .neck-lifting-step-number {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .neck-lifting-step-title {
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .neck-lifting-procedure-section {
            padding: 60px 0;
        }

        .neck-lifting-container {
            padding: 0 30px;
        }

        .neck-lifting-title {
            font-size: 30px;
            margin-bottom: 18px;
        }

        .neck-lifting-desc {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .neck-lifting-header {
            margin-bottom: 40px;
        }

        .neck-lifting-steps {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .neck-lifting-step-image {
            height: 220px;
        }

        .neck-lifting-step-content {
            padding: 25px 20px;
        }

        .neck-lifting-step-number {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .neck-lifting-step-title {
            font-size: 14px;
        }
    }


    /* 안면거상 정밀분석 시스템 섹션 스타일 */
    .face-analysis-system-section {
        background: #f9f9f9;
        padding: 120px 0;
        position: relative;
    }

    .face-analysis-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .face-analysis-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .face-analysis-title {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        margin-bottom: 25px;
    }

    .face-analysis-subtitle {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
    }

    .face-analysis-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .face-analysis-item {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .face-analysis-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .face-analysis-image {
        width: 100%;
        height: 280px;
        background: #f5f5f5;
        overflow: hidden;
        position: relative;
    }

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

    .face-analysis-content {
        padding: 35px 25px;
        text-align: center;
    }

    .face-analysis-name {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 18px;
    }

    .face-analysis-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
    }

    @media (max-width: 1200px) {
        .face-analysis-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 992px) {
        .face-analysis-system-section {
            padding: 80px 0;
        }

        .face-analysis-container {
            padding: 0 40px;
        }

        .face-analysis-title {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .face-analysis-subtitle {
            font-size: 15px;
        }

        .face-analysis-header {
            margin-bottom: 60px;
        }

        .face-analysis-image {
            height: 260px;
        }

        .face-analysis-content {
            padding: 30px 20px;
        }

        .face-analysis-name {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .face-analysis-desc {
            font-size: 13px;
        }
    }

    @media (max-width: 768px) {
        .face-analysis-system-section {
            padding: 60px 0;
        }

        .face-analysis-container {
            padding: 0 30px;
        }

        .face-analysis-title {
            font-size: 30px;
            margin-bottom: 18px;
        }

        .face-analysis-subtitle {
            font-size: 14px;
        }

        .face-analysis-header {
            margin-bottom: 50px;
        }

        .face-analysis-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .face-analysis-image {
            height: 240px;
        }

        .face-analysis-content {
            padding: 25px 20px;
        }

        .face-analysis-name {
            font-size: 17px;
            margin-bottom: 12px;
        }

        .face-analysis-desc {
            font-size: 13px;
        }
    }


    /* 응급처치 시스템 섹션 스타일 */
    .emergency-system-section {
        background: linear-gradient(135deg, #3a3d4a 0%, #2d2f3a 100%);
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }

    .emergency-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
        position: relative;
    }

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

    .emergency-title-eng {
        font-size: 48px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 15px;
        letter-spacing: 3px;
        font-family: 'Georgia', serif;
    }

    .emergency-title-kor {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 30px;
    }

    .emergency-description {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.9;
        max-width: 600px;
        margin: 0 auto;
    }

    .emergency-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
        margin-top: 60px;
    }

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

    .emergency-image-circle {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 25px;
        background: #fff;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .emergency-image-circle:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }

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

    .emergency-item-title {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

    .emergency-item-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
    }

    @media (max-width: 1200px) {
        .emergency-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .emergency-image-circle {
            width: 180px;
            height: 180px;
        }
    }

    @media (max-width: 992px) {
        .emergency-system-section {
            padding: 80px 0;
        }

        .emergency-container {
            padding: 0 40px;
        }

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

        .emergency-title-eng {
            font-size: 40px;
            margin-bottom: 12px;
        }

        .emergency-title-kor {
            font-size: 30px;
            margin-bottom: 25px;
        }

        .emergency-description {
            font-size: 15px;
        }

        .emergency-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .emergency-image-circle {
            width: 160px;
            height: 160px;
        }

        .emergency-item-title {
            font-size: 16px;
        }

        .emergency-item-desc {
            font-size: 12px;
        }
    }

    @media (max-width: 768px) {
        .emergency-system-section {
            padding: 60px 0;
        }

        .emergency-container {
            padding: 0 30px;
        }

        .emergency-header {
            margin-bottom: 50px;
        }

        .emergency-title-eng {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .emergency-title-kor {
            font-size: 26px;
            margin-bottom: 20px;
        }

        .emergency-description {
            font-size: 14px;
        }

        .emergency-grid {
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 40px;
        }

        .emergency-image-circle {
            width: 180px;
            height: 180px;
            margin-bottom: 20px;
        }

        .emergency-item-title {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .emergency-item-desc {
            font-size: 13px;
        }
    }


    /* 회복프로그램 섹션 스타일 */
    .recovery-program-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .recovery-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .recovery-title-eng {
        font-size: 14px;
        font-weight: 500;
        color: #999;
        margin-bottom: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .recovery-title-kor {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        margin-bottom: 25px;
    }

    .recovery-subtitle {
        font-size: 20px;
        font-weight: 600;
        color: #666;
        margin-bottom: 35px;
    }

    .recovery-description {
        font-size: 16px;
        color: #666;
        line-height: 1.9;
        max-width: 800px;
        margin: 0 auto;
    }

    .recovery-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

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

    .recovery-image-circle {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 25px;
        background: #f5f5f5;
        border: 3px solid #e0e0e0;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .recovery-image-circle:hover {
        transform: translateY(-5px);
        border-color: #a0a3ff;
    }

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

    .recovery-item-number {
        font-size: 15px;
        font-weight: 700;
        color: #a0a3ff;
        margin-bottom: 10px;
    }

    .recovery-item-title {
        font-size: 17px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }

    .recovery-footer-note {
        text-align: center;
        font-size: 14px;
        color: #999;
        margin-top: 50px;
        line-height: 1.7;
    }

    @media (max-width: 1400px) {
        .recovery-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
    }

    @media (max-width: 992px) {
        .recovery-program-section {
            padding: 80px 0;
        }

        .recovery-container {
            padding: 0 40px;
        }

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

        .recovery-title-eng {
            font-size: 13px;
            margin-bottom: 12px;
        }

        .recovery-title-kor {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .recovery-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .recovery-description {
            font-size: 15px;
        }

        .recovery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .recovery-image-circle {
            width: 160px;
            height: 160px;
            margin-bottom: 20px;
        }

        .recovery-item-number {
            font-size: 14px;
        }

        .recovery-item-title {
            font-size: 16px;
        }

        .recovery-footer-note {
            font-size: 13px;
            margin-top: 40px;
        }
    }

    @media (max-width: 768px) {
        .recovery-program-section {
            padding: 60px 0;
        }

        .recovery-container {
            padding: 0 30px;
        }

        .recovery-header {
            margin-bottom: 50px;
        }

        .recovery-title-eng {
            font-size: 12px;
            margin-bottom: 10px;
        }

        .recovery-title-kor {
            font-size: 30px;
            margin-bottom: 18px;
        }

        .recovery-subtitle {
            font-size: 16px;
            margin-bottom: 25px;
        }

        .recovery-description {
            font-size: 14px;
        }

        .recovery-grid {
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 40px;
        }

        .recovery-image-circle {
            width: 180px;
            height: 180px;
            margin-bottom: 20px;
        }

        .recovery-item-number {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .recovery-item-title {
            font-size: 16px;
        }

        .recovery-footer-note {
            font-size: 13px;
            margin-top: 35px;
        }
    }


    /* 안전마취 시스템 섹션 스타일 */
    .safe-anesthesia-section {
        background: #f5f5f5;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .safe-anesthesia-container {
        max-width: 1600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        min-height: 700px;
    }

    .safe-anesthesia-left {
        position: relative;
        overflow: hidden;
    }

    .safe-anesthesia-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .safe-anesthesia-right {
        padding: 80px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #f5f5f5;
    }

    .safe-anesthesia-title-eng {
        font-size: 48px;
        font-weight: 300;
        color: rgba(0, 0, 0, 0.15);
        margin-bottom: 20px;
        letter-spacing: 2px;
        font-family: 'Georgia', serif;
    }

    .safe-anesthesia-title-kor {
        font-size: 36px;
        font-weight: 800;
        color: #333;
        margin-bottom: 5px;
        padding-bottom: 15px;
        border-bottom: 3px solid #333;
        display: inline-block;
    }

    .safe-anesthesia-highlight {
        font-size: 20px;
        font-weight: 700;
        color: #d63031;
        margin-top: 35px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .safe-anesthesia-desc {
        font-size: 15px;
        color: #666;
        line-height: 1.9;
        margin-bottom: 50px;
    }

    .safe-anesthesia-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .safe-anesthesia-feature {
        background: #fff;
        padding: 30px 25px;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .safe-anesthesia-feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    }

    .safe-anesthesia-feature-number {
        font-size: 48px;
        font-weight: 300;
        color: rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
        font-family: 'Georgia', serif;
    }

    .safe-anesthesia-feature-title {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .safe-anesthesia-feature-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
    }

    @media (max-width: 1200px) {
        .safe-anesthesia-container {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .safe-anesthesia-left {
            min-height: 400px;
        }

        .safe-anesthesia-right {
            padding: 60px 50px;
        }

        .safe-anesthesia-title-eng {
            font-size: 42px;
            margin-bottom: 18px;
        }

        .safe-anesthesia-title-kor {
            font-size: 32px;
        }

        .safe-anesthesia-highlight {
            font-size: 18px;
            margin-top: 30px;
        }

        .safe-anesthesia-desc {
            font-size: 14px;
            margin-bottom: 40px;
        }

        .safe-anesthesia-features {
            margin-top: 35px;
        }

        .safe-anesthesia-feature {
            padding: 25px 20px;
        }

        .safe-anesthesia-feature-number {
            font-size: 42px;
            margin-bottom: 12px;
        }

        .safe-anesthesia-feature-title {
            font-size: 17px;
            margin-bottom: 10px;
        }

        .safe-anesthesia-feature-desc {
            font-size: 13px;
        }
    }

    @media (max-width: 768px) {
        .safe-anesthesia-left {
            min-height: 350px;
        }

        .safe-anesthesia-right {
            padding: 50px 30px;
        }

        .safe-anesthesia-title-eng {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .safe-anesthesia-title-kor {
            font-size: 28px;
            padding-bottom: 12px;
            border-bottom: 2px solid #333;
        }

        .safe-anesthesia-highlight {
            font-size: 17px;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        .safe-anesthesia-desc {
            font-size: 14px;
            margin-bottom: 35px;
        }

        .safe-anesthesia-features {
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 30px;
        }

        .safe-anesthesia-feature {
            padding: 25px 20px;
        }

        .safe-anesthesia-feature-number {
            font-size: 38px;
            margin-bottom: 10px;
        }

        .safe-anesthesia-feature-title {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .safe-anesthesia-feature-desc {
            font-size: 13px;
        }
    }


    /* 안전관리 시스템 섹션 스타일 */
    .safety-management-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

    .safety-management-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .safety-management-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .safety-management-title-eng {
        font-size: 14px;
        font-weight: 500;
        color: #999;
        margin-bottom: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .safety-management-title-kor {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        margin-bottom: 30px;
    }

    .safety-management-subtitle {
        font-size: 18px;
        font-weight: 600;
        color: #666;
        line-height: 1.8;
    }

    .safety-management-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .safety-management-item {
        padding: 40px 50px;
        border-bottom: 1px solid #e0e0e0;
        transition: background-color 0.3s ease;
    }

    .safety-management-item:last-child {
        border-bottom: none;
    }

    .safety-management-item:hover {
        background-color: #f9f9f9;
    }

    .safety-item-number {
        font-size: 18px;
        font-weight: 700;
        color: #a0a3ff;
        margin-bottom: 15px;
    }

    .safety-item-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        line-height: 1.4;
    }

    @media (max-width: 992px) {
        .safety-management-section {
            padding: 80px 0;
        }

        .safety-management-container {
            padding: 0 40px;
        }

        .safety-management-header {
            margin-bottom: 60px;
        }

        .safety-management-title-eng {
            font-size: 13px;
            margin-bottom: 12px;
        }

        .safety-management-title-kor {
            font-size: 36px;
            margin-bottom: 25px;
        }

        .safety-management-subtitle {
            font-size: 16px;
        }

        .safety-management-item {
            padding: 35px 40px;
        }

        .safety-item-number {
            font-size: 17px;
            margin-bottom: 12px;
        }

        .safety-item-title {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .safety-management-section {
            padding: 60px 0;
        }

        .safety-management-container {
            padding: 0 30px;
        }

        .safety-management-header {
            margin-bottom: 50px;
        }

        .safety-management-title-eng {
            font-size: 12px;
            margin-bottom: 10px;
        }

        .safety-management-title-kor {
            font-size: 30px;
            margin-bottom: 20px;
        }

        .safety-management-subtitle {
            font-size: 15px;
        }

        .safety-management-item {
            padding: 30px 25px;
        }

        .safety-item-number {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .safety-item-title {
            font-size: 20px;
        }
    }


    /* 에이징엘의 약속 섹션 스타일 */
    .aging-promise-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&h=600&fit=crop&q=80') center/cover no-repeat fixed;
        padding: 120px 0;
        position: relative;
        color: #fff;
    }

    .aging-promise-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 80px;
        align-items: start;
    }

    .aging-promise-left {
        position: relative;
    }

    .aging-promise-title-eng {
        font-size: 42px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 20px;
        letter-spacing: 2px;
        font-family: 'Georgia', serif;
        line-height: 1.2;
    }

    .aging-promise-title-kor {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 30px;
    }

    .aging-promise-subtitle {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
    }

    .aging-promise-right {
        position: relative;
    }

    .aging-promise-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .aging-promise-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .aging-promise-item:last-child {
        border-bottom: none;
    }

    .aging-promise-bullet {
        width: 8px;
        height: 8px;
        background: #a0a3ff;
        border-radius: 50%;
        margin-top: 8px;
        flex-shrink: 0;
    }

    .aging-promise-text {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        flex: 1;
    }

    @media (max-width: 1200px) {
        .aging-promise-container {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .aging-promise-left {
            text-align: center;
        }

        .aging-promise-title-eng {
            font-size: 38px;
            margin-bottom: 18px;
        }

        .aging-promise-title-kor {
            font-size: 28px;
            margin-bottom: 25px;
        }

        .aging-promise-subtitle {
            font-size: 14px;
        }

        .aging-promise-list {
            gap: 20px;
        }

        .aging-promise-item {
            padding: 20px 0;
        }

        .aging-promise-text {
            font-size: 15px;
        }
    }

    @media (max-width: 992px) {
        .aging-promise-section {
            padding: 80px 0;
            background-attachment: scroll;
        }

        .aging-promise-container {
            padding: 0 40px;
            gap: 50px;
        }

        .aging-promise-title-eng {
            font-size: 34px;
        }

        .aging-promise-title-kor {
            font-size: 26px;
        }
    }

    @media (max-width: 768px) {
        .aging-promise-section {
            padding: 60px 0;
        }

        .aging-promise-container {
            padding: 0 30px;
            gap: 40px;
        }

        .aging-promise-title-eng {
            font-size: 30px;
            margin-bottom: 15px;
        }

        .aging-promise-title-kor {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .aging-promise-subtitle {
            font-size: 13px;
        }

        .aging-promise-list {
            gap: 15px;
        }

        .aging-promise-item {
            padding: 18px 0;
            gap: 12px;
        }

        .aging-promise-bullet {
            width: 6px;
            height: 6px;
            margin-top: 7px;
        }

        .aging-promise-text {
            font-size: 14px;
            line-height: 1.7;
        }
    }

/* ===== Before/After Section ===== */
.before-after-section {
    background: #fff;
    padding: 100px 0;
}

.before-after-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.before-after-item {
    text-align: center;
}

.ba-image {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.ba-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ba-label {
    font-size: 24px;
    font-weight: 700;
    color: #a0a3ff;
    margin: 0;
    letter-spacing: 1px;
}

/* 각도 선택 버튼 */
.angle-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.angle-btn {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.angle-btn:hover {
    border-color: #a0a3ff;
    color: #a0a3ff;
}

.angle-btn.active {
    background: #a0a3ff;
    border-color: #a0a3ff;
    color: #fff;
}

/* 안내 문구 */
.before-after-notice {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin: 0;
    padding-top: 20px;
}

/* Mobile Responsive for Before/After */
@media (max-width: 768px) {
    .before-after-section {
        padding: 60px 0;
    }

    .before-after-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .ba-label {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .angle-buttons {
        gap: 10px;
        padding: 0 20px;
    }

    .angle-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .before-after-notice {
        font-size: 13px;
        padding: 0 20px;
    }
}

/* ===== Analysis Header Styles ===== */
.analysis-header {
    text-align: center;
    margin-bottom: 60px;
}

.analysis-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.analysis-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Responsive for Analysis Header */
@media (max-width: 768px) {
    .analysis-header {
        margin-bottom: 40px;
    }

    .analysis-main-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .analysis-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .analysis-subtitle br {
        display: none;
    }
}

/* ===== Analysis System Section Styles ===== */
.analysis-system-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.analysis-item {
    text-align: center;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analysis-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.analysis-image {
    width: 100%;
    margin-bottom: 25px;
}

.analysis-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.analysis-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.analysis-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Tablet Responsive for Analysis System */
@media (max-width: 992px) and (min-width: 769px) {
    .analysis-system-section {
        padding: 60px 0;
    }

    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .analysis-item {
        padding: 25px 18px;
    }

    .analysis-item-title {
        font-size: 17px;
    }

    .analysis-item-description {
        font-size: 13px;
    }
}

/* Mobile Responsive for Analysis System */
@media (max-width: 768px) {
    .analysis-system-section {
        padding: 50px 0;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .analysis-item {
        padding: 25px 20px;
    }

    .analysis-image {
        margin-bottom: 20px;
    }

    .analysis-item-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .analysis-item-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .analysis-item-description br {
        display: none;
    }
}

/* ===== Emergency System Section (Recovery Program) Styles ===== */
.emergency-system-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.emergency-header {
    text-align: center;
    margin-bottom: 70px;
}

.emergency-title-eng {
    font-size: 48px;
    font-weight: 300;
    color: #f0f0f0;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.emergency-title-kor {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -1px;
}

.emergency-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.emergency-sub-description {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    margin: 0;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.emergency-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emergency-item:hover .emergency-circle {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.emergency-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emergency-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.4;
}

/* Tablet Responsive for Emergency System */
@media (max-width: 992px) and (min-width: 769px) {
    .emergency-system-section {
        padding: 70px 0;
    }

    .emergency-title-eng {
        font-size: 42px;
    }

    .emergency-title-kor {
        font-size: 34px;
    }

    .emergency-description {
        font-size: 16px;
    }

    .emergency-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        padding: 0 30px;
    }

    .emergency-circle {
        width: 180px;
        height: 180px;
    }

    .emergency-item-title {
        font-size: 17px;
    }
}

/* Mobile Responsive for Emergency System */
@media (max-width: 768px) {
    .emergency-system-section {
        padding: 60px 0;
    }

    .emergency-header {
        margin-bottom: 50px;
    }

    .emergency-title-eng {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .emergency-title-kor {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .emergency-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .emergency-description br {
        display: none;
    }

    .emergency-sub-description {
        font-size: 14px;
    }

    .emergency-sub-description br {
        display: none;
    }

    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 20px;
    }

    .emergency-circle {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }

    .emergency-item-title {
        font-size: 16px;
    }
}

/* ===== Safe Anesthesia Section (Safety Management System) Styles ===== */
.safe-anesthesia-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.anesthesia-main-content {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.anesthesia-image-side {
    width: 100%;
}

.anesthesia-image-side img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.anesthesia-text-side {
    color: #333;
}

.anesthesia-title-eng {
    font-size: 48px;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.anesthesia-title-kor {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.3;
}

.anesthesia-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.anesthesia-highlight {
    font-size: 22px;
    color: #a0a3ff;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
}

.anesthesia-detail {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.anesthesia-features {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.anesthesia-feature-item {
    background: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anesthesia-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.anesthesia-feature-number {
    font-size: 32px;
    font-weight: 300;
    color: #a0a3ff;
    margin-bottom: 20px;
}

.anesthesia-feature-title {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin: 0;
}

/* Tablet Responsive for Safe Anesthesia Section */
@media (max-width: 992px) and (min-width: 769px) {
    .safe-anesthesia-section {
        padding: 70px 0;
    }

    .anesthesia-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
        margin-bottom: 60px;
    }

    .anesthesia-title-eng {
        font-size: 42px;
    }

    .anesthesia-title-kor {
        font-size: 32px;
    }

    .anesthesia-highlight {
        font-size: 20px;
    }

    .anesthesia-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 30px;
    }

    .anesthesia-feature-item {
        padding: 35px 20px;
    }

    .anesthesia-feature-number {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .anesthesia-feature-title {
        font-size: 16px;
    }
}

/* Mobile Responsive for Safe Anesthesia Section */
@media (max-width: 768px) {
    .safe-anesthesia-section {
        padding: 60px 0;
    }

    .anesthesia-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .anesthesia-title-eng {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .anesthesia-title-kor {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .anesthesia-description {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .anesthesia-highlight {
        font-size: 19px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .anesthesia-detail {
        font-size: 14px;
        line-height: 1.7;
    }

    .anesthesia-detail br {
        display: none;
    }

    .anesthesia-features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .anesthesia-feature-item {
        padding: 30px 20px;
    }

    .anesthesia-feature-number {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .anesthesia-feature-title {
        font-size: 15px;
        line-height: 1.4;
    }

    .anesthesia-feature-title br {
        display: inline;
    }
}



/* Extracted from inline <style> tags */


        .vibe-promise-section {
            background: #4a5568;
        }

        .promise-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px;
            display: grid;
            grid-template-columns: 450px 1fr;
            gap: 80px;
            align-items: center;
        }

        .promise-left {
            position: sticky;
            top: 100px;
        }

        .promise-title-eng {
            font-size: 48px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.2);
            margin: 0 0 10px 0;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .promise-title-kor {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        .promise-intro {
            font-size: 15px;
            color: #cbd5e0;
            line-height: 1.6;
            margin: 0;
        }

        .promise-right {
            padding-top: 0;
        }

        .promise-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .promise-item {
            font-size: 18px;
            color: #fff;
            padding: 15px 0 15px 25px;
            border-bottom: none;
            line-height: 1.5;
            position: relative;
            font-weight: 400;
            transition: all 0.3s ease;
        }

        .promise-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: #68d391;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .promise-item:hover {
            color: #68d391;
            padding-left: 30px;
        }

        .promise-item:hover::before {
            width: 10px;
            height: 10px;
            box-shadow: 0 0 15px rgba(104, 211, 145, 0.5);
        }

        .promise-item:last-child {
            border-bottom: none;
        }

        @media (max-width: 1200px) {
            .promise-container {
                grid-template-columns: 400px 1fr;
                gap: 60px;
                padding: 80px 20px;
            }

            .promise-title-eng {
                font-size: 42px;
            }

            .promise-title-kor {
                font-size: 28px;
            }

            .promise-item {
                font-size: 17px;
                padding: 13px 0 13px 25px;
            }
        }

        @media (max-width: 992px) {
            .promise-container {
                grid-template-columns: 350px 1fr;
                gap: 50px;
                padding: 70px 30px;
            }

            .promise-title-eng {
                font-size: 38px;
            }

            .promise-title-kor {
                font-size: 26px;
            }

            .promise-intro {
                font-size: 14px;
            }

            .promise-item {
                font-size: 16px;
                padding: 12px 0 12px 22px;
            }
        }

        @media (max-width: 768px) {
            .promise-container {
                grid-template-columns: 1fr;
                gap: 35px;
                padding: 60px 20px;
            }

            .promise-left {
                position: static;
            }

            .promise-title-eng {
                font-size: 34px;
                margin-bottom: 8px;
            }

            .promise-title-kor {
                font-size: 24px;
                margin-bottom: 12px;
            }

            .promise-intro {
                font-size: 13px;
            }

            .promise-right {
                padding-top: 0;
            }

            .promise-item {
                font-size: 15px;
                padding: 12px 0 12px 22px;
            }

            .promise-item::before {
                width: 7px;
                height: 7px;
            }

            .promise-item:hover {
                padding-left: 26px;
            }

            .promise-item:hover::before {
                width: 10px;
                height: 10px;
            }
        }
    