/**
 * Lifting Full Facelift Page Styles
 * 리프팅 FULL 안면거상 페이지 스타일시트
 */

    .cont-wrap {
      margin-bottom: 0;
      padding-bottom: 110px;
      background: #f5f5f5;
    }

    /* 새로운 상단 비주얼 스타일 */
    .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-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

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

    @media (max-width: 992px) {
        .forehead-hero-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;
        }

        .forehead-hero-image img {
            margin: 0 auto;
        }
    }

    @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-background::before {
        }

        .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 섹션 스타일 */
    .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;
    }

    @media (max-width: 992px) {
        .prologue-container {
            grid-template-columns: 1fr;
            gap: 60px;
            padding: 0 30px;
        }

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

    @media (max-width: 768px) {
        .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;
        }
    }

    /* Key Point Hero 섹션 스타일 */
    .keypoint-hero-section {
        position: relative;
        overflow: hidden;
        min-height: 650px;
        background: linear-gradient(135deg, #6b6d70 0%, #515357 100%);
    }

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

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

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

    .keypoint-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .keypoint-hero-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        min-height: 650px;
        position: relative;
        z-index: 2;
    }

    .keypoint-hero-content {
        padding: 80px 60px 80px 80px;
        z-index: 2;
        position: relative;
    }

    .keypoint-badge {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .badge-line {
        width: 40px;
        height: 2px;
        background: rgba(255, 255, 255, 0.4);
    }

    .badge-title {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 3px;
    }

    .keypoint-hero-title {
        font-size: 42px;
        font-weight: 700;
        color: #fff;
        line-height: 1.4;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .keypoint-hero-subtitle {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .keypoint-hero-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .keypoint-hero-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        color: #fff;
    }

    .list-number {
        font-size: 16px;
        font-weight: 700;
        color: #5dd5e8;
        min-width: 30px;
    }

    .list-text {
        font-size: 16px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
    }

    .list-text strong {
        color: #5dd5e8;
        font-weight: 600;
    }

    .keypoint-hero-image {
        position: relative;
        opacity: 0;
        pointer-events: none;
    }

    @media (max-width: 992px) {
        .keypoint-hero-container {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .keypoint-hero-content {
            padding: 60px 40px;
        }
    }

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

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

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

        .keypoint-hero-background::before {
        }

        .keypoint-hero-content {
            padding: 50px 25px;
        }

        .keypoint-hero-title {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .keypoint-hero-subtitle {
            font-size: 14px;
            margin-bottom: 30px;
        }

        .keypoint-hero-list li {
            margin-bottom: 18px;
        }

        .list-number {
            font-size: 14px;
            min-width: 25px;
        }

        .list-text {
            font-size: 15px;
        }
    }

    /* ===== Full HD Endoscope Section Styles ===== */
    .endoscope-section {
        position: relative;
        overflow: hidden;
        min-height: 650px;
        background: linear-gradient(135deg, #5a5c6e 0%, #4a4c5e 100%);
    }

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

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

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

    .endoscope-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(90, 92, 110, 0.9) 0%, rgba(90, 92, 110, 0.5) 50%, rgba(74, 76, 94, 0.3) 100%);
        z-index: 1;
    }

    .endoscope-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        min-height: 650px;
        position: relative;
        z-index: 2;
    }

    .endoscope-content {
        padding: 80px 60px 80px 80px;
        z-index: 2;
        position: relative;
        color: #fff;
    }

    .endoscope-title {
        font-size: 48px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .endoscope-subtitle {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        line-height: 1.5;
        margin-bottom: 40px;
        letter-spacing: -0.5px;
    }

    .endoscope-description {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .endoscope-note {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin: 0;
    }

    .endoscope-image {
        position: relative;
        opacity: 0;
        pointer-events: none;
    }

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

        .endoscope-content {
            padding: 60px 40px;
        }

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

        .endoscope-title {
            font-size: 42px;
        }

        .endoscope-subtitle {
            font-size: 24px;
        }
    }

    @media (max-width: 768px) {
        .endoscope-section {
            min-height: 650px;
        }

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

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

        .endoscope-background::before {
            background: linear-gradient(135deg, rgba(90, 92, 110, 0.85) 0%, rgba(74, 76, 94, 0.75) 100%);
        }

        .endoscope-content {
            padding: 50px 25px;
        }

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

        .endoscope-subtitle {
            font-size: 22px;
            margin-bottom: 30px;
        }

        .endoscope-description {
            font-size: 15px;
            margin-bottom: 25px;
        }

        .endoscope-note {
            font-size: 13px;
        }
    }

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

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

    .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-main-title {
            font-size: 32px;
        }

        .analysis-subtitle {
            font-size: 16px;
        }

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

    /* ===== Safe Anesthesia Section Styles ===== */
    .anesthesia-section {
        position: relative;
        overflow: hidden;
        min-height: 800px;
        background: #f5f5f5;
    }

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

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

    .anesthesia-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.5) 100%);
        z-index: 1;
    }

    .anesthesia-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 100px 50px;
        position: relative;
        z-index: 2;
        min-height: 800px;
        display: flex;
        align-items: center;
    }

    .anesthesia-content {
        max-width: 700px;
        z-index: 2;
    }

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

    .anesthesia-subtitle {
        font-size: 18px;
        color: #ccc;
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

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

    .anesthesia-highlight {
        font-size: 20px;
        color: #ff6b9d;
        line-height: 1.6;
        margin-bottom: 20px;
        font-weight: 500;
    }

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

    .anesthesia-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 30px;
    }

    .anesthesia-item {
        background: #f9f9f9;
        padding: 25px 20px;
        border-radius: 0;
        border-left: 3px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .anesthesia-item:hover {
        border-left-color: #ff6b9d;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .anesthesia-number {
        font-size: 16px;
        color: #999;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .anesthesia-item-title {
        font-size: 17px;
        font-weight: 700;
        color: #222;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .anesthesia-item-desc {
        font-size: 13px;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    /* Tablet Responsive for Anesthesia Section */
    @media (max-width: 992px) and (min-width: 769px) {
        .anesthesia-section {
            min-height: 700px;
        }

        .anesthesia-container {
            padding: 80px 30px;
            min-height: 700px;
        }

        .anesthesia-content {
            max-width: 600px;
        }

        .anesthesia-title {
            font-size: 28px;
        }

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

        .anesthesia-grid {
            gap: 30px 25px;
        }
    }

    /* Mobile Responsive for Anesthesia Section */
    @media (max-width: 768px) {
        .anesthesia-section {
            min-height: 700px;
        }

        .anesthesia-background::before {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%);
        }

        .anesthesia-container {
            padding: 60px 20px;
            min-height: 700px;
        }

        .anesthesia-content {
            max-width: 100%;
        }

        .anesthesia-header {
            margin-bottom: 40px;
        }

        .anesthesia-subtitle {
            font-size: 16px;
            margin-bottom: 12px;
        }

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

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

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

        .anesthesia-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .anesthesia-item {
            padding: 22px 18px;
        }

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

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

    /* ===== Aging L Promise Section Styles ===== */
    .promise-section {
        position: relative;
        overflow: hidden;
        min-height: 600px;
        background: #2a2a2a;
    }

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

    .promise-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0.3;
    }

    .promise-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(42, 42, 42, 0.95) 0%, rgba(42, 42, 42, 0.85) 100%);
        z-index: 1;
    }

    .promise-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 100px 50px;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 40% 60%;
        gap: 80px;
        align-items: center;
        min-height: 600px;
    }

    .promise-left {
        color: #fff;
    }

    .promise-main-title {
        font-size: 48px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

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

    .promise-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .promise-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.8;
        margin: 0;
    }

    .promise-right {
        color: #fff;
    }

    .promise-statement {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.9;
        margin-bottom: 22px;
        padding-left: 20px;
        position: relative;
    }

    .promise-statement:before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
    }

    .promise-statement:last-child {
        margin-bottom: 0;
    }

    /* Tablet Responsive for Promise Section */
    @media (max-width: 992px) and (min-width: 769px) {
        .promise-section {
            min-height: 550px;
        }

        .promise-container {
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 80px 30px;
            min-height: 550px;
        }

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

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

    /* Mobile Responsive for Promise Section */
    @media (max-width: 768px) {
        .promise-section {
            min-height: 650px;
        }

        .promise-container {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 60px 20px;
            min-height: 650px;
        }

        .promise-main-title {
            font-size: 36px;
            margin-bottom: 12px;
        }

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

        .promise-desc {
            font-size: 15px;
            margin-bottom: 20px;
        }

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

        .promise-statement {
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.8;
        }
    }

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

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

    .emergency-subtitle {
        font-size: 16px;
        color: #999;
        font-weight: 400;
        letter-spacing: 2px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

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

    .emergency-desc {
        font-size: 17px;
        color: #666;
        line-height: 1.8;
        margin: 0;
    }

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

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

    .emergency-image-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-image-circle {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

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

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

    .emergency-item-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

        .emergency-subtitle {
            font-size: 14px;
            margin-bottom: 12px;
        }

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

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

        .emergency-desc br {
            display: none;
        }

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

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

        .emergency-item-title {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .emergency-item-desc {
            font-size: 14px;
        }
    }
</style>
.recovery-program-section {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.recovery-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

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

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

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

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

.recovery-number {
    display: block;
    font-size: 48px;
    font-weight: 300;
    color: #a0a3ff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.recovery-item-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.recovery-notice {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 40px;
    line-height: 1.6;
}

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

    .recovery-title {
        font-size: 28px;
    }

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

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

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

    .recovery-number {
        font-size: 40px;
    }

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

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

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

    .recovery-title {
        font-size: 24px;
    }

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

    .recovery-desc {
        font-size: 13px;
        br {
            display: none;
        }
    }

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

    .recovery-number {
        font-size: 36px;
        margin-bottom: 10px;
    }

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

    .recovery-notice {
        font-size: 12px;
        padding: 0 15px;
    }
}
.safety-management-section {
    padding: 80px 0;
    background: #fff;
}

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

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

.safety-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.safety-category {
    display: flex;
    align-items: center;
    gap: 8px;
}

.safety-category i {
    font-size: 20px;
    color: #a0a3ff;
}

.safety-category span {
    font-size: 16px;
    color: #666;
}

.safety-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.safety-item {
    background: linear-gradient(135deg, #9b9edb 0%, #a8abf0 100%);
    border-radius: 50px;
    padding: 25px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(160, 163, 255, 0.3);
}

.safety-item span {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
}

.safety-item span br {
    display: block;
}

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

    .safety-title {
        font-size: 28px;
    }

    .safety-categories {
        gap: 30px;
    }

    .safety-category span {
        font-size: 15px;
    }

    .safety-list {
        max-width: 500px;
    }

    .safety-item {
        padding: 20px 35px;
    }

    .safety-item span {
        font-size: 16px;
    }
}

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

    .safety-header {
        margin-bottom: 40px;
    }

    .safety-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .safety-categories {
        gap: 20px;
    }

    .safety-category i {
        font-size: 18px;
    }

    .safety-category span {
        font-size: 14px;
    }

    .safety-list {
        max-width: 100%;
        padding: 0 20px;
        gap: 15px;
    }

    .safety-item {
        padding: 18px 30px;
        border-radius: 40px;
    }

    .safety-item span {
        font-size: 15px;
    }
}
/* Solution Header Styles */
.solution-header {
    text-align: center;
    margin-bottom: 80px;
}

.solution-badge {
    display: inline-block;
    color: #a0a3ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.solution-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: -1px;
}

.solution-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Solution Grid Styles */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.solution-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.solution-text {
    padding: 0 10px;
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #a0a3ff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solution-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .solution-badge {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .solution-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .solution-desc {
        font-size: 15px;
        line-height: 1.6;
    }

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

    .solution-item img {
        margin-bottom: 20px;
    }

    .step-number {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .solution-title {
        font-size: 34px;
    }

    .solution-desc {
        font-size: 16px;
    }

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




/* Before/After Grid Styles */
.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;
}

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

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

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

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

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

/* Procedure Info Section Styles */
.procedure-info-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.procedure-info-item {
    text-align: center;
    background: #fff;
    padding: 40px 20px 30px;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.procedure-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(160,163,255,0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a0a3ff 0%, #8589ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

/* 아이콘 스타일 - CSS로 간단하게 표현 */
.info-icon i::before {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}

.icon-clock::before {
    content: '⏱';
    font-style: normal;
    font-size: 32px;
}

.icon-anesthesia::before {
    content: '💉';
    font-style: normal;
    font-size: 32px;
}

.icon-hospital::before {
    content: '🏥';
    font-style: normal;
    font-size: 32px;
}

.icon-stitch::before {
    content: '✂️';
    font-style: normal;
    font-size: 32px;
}

.icon-visit::before {
    content: '📋';
    font-style: normal;
    font-size: 32px;
}

.icon-recovery::before {
    content: '⚙️';
    font-style: normal;
    font-size: 32px;
}

.info-label {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 5px 0;
    line-height: 1.5;
}

.info-sub {
    font-size: 14px;
    color: #ff4444;
    font-weight: 600;
    margin-top: 5px;
}

/* Tablet Responsive for Procedure Info */
@media (max-width: 992px) and (min-width: 769px) {
    .procedure-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 30px;
    }
}

/* Mobile Responsive for Procedure Info */
@media (max-width: 768px) {
    .procedure-info-section {
        padding: 60px 0;
    }

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

    .procedure-info-item {
        padding: 30px 15px 25px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .info-icon i::before {
        font-size: 28px;
    }

    .info-label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .info-value {
        font-size: 14px;
    }

    .info-sub {
        font-size: 13px;
    }
}

/* ===== Keypoint Section Styles ===== */
.keypoint-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
}

.keypoint-header {
    text-align: center;
    margin-bottom: 50px;
}

.keypoint-subtitle {
    font-size: 16px;
    color: #a0a3ff;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.keypoint-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
}

.keypoint-title .highlight-text {
    color: #a0a3ff;
    position: relative;
}

.keypoint-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.keypoint-intro strong {
    color: #333;
    font-weight: 700;
}

.keypoint-image-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.keypoint-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, rgba(255, 193, 7, 0.95), rgba(255, 152, 0, 0.95));
    padding: 15px 20px;
    text-align: center;
}

.caption-highlight {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    display: inline-block;
}

.keypoint-plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a0a3ff 0%, #7d81ff 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(160, 163, 255, 0.3);
}

.keypoint-plus-icon span {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
}

.keypoint-description {
    text-align: center;
    padding: 0 20px;
}

.keypoint-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Tablet Responsive for Keypoint Section */
@media (max-width: 992px) and (min-width: 769px) {
    .keypoint-section {
        padding: 60px 0;
    }

    .keypoint-title {
        font-size: 28px;
    }

    .keypoint-image-grid {
        gap: 20px;
        padding: 0 15px;
    }

    .keypoint-plus-icon {
        width: 50px;
        height: 50px;
    }

    .keypoint-plus-icon span {
        font-size: 30px;
    }
}

/* Mobile Responsive for Keypoint Section */
@media (max-width: 768px) {
    .keypoint-section {
        padding: 50px 0;
    }

    .keypoint-header {
        margin-bottom: 35px;
    }

    .keypoint-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .keypoint-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .keypoint-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .keypoint-image-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .keypoint-plus-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .keypoint-plus-icon span {
        font-size: 24px;
    }

    .image-caption {
        padding: 12px 15px;
    }

    .caption-highlight {
        font-size: 13px;
    }

    .keypoint-description {
        padding: 0 15px;
    }

    .keypoint-description p {
        font-size: 14px;
        line-height: 1.7;
    }

    .keypoint-description p br {
        display: none;
    }
}

/* ===== Keypoint Section 02 Styles ===== */
.keypoint-section-02 {
    padding: 80px 0;
    background: #ffffff;
}

.keypoint-02-header {
    text-align: center;
    margin-bottom: 60px;
}

.keypoint-02-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.keypoint-02-image {
    width: 100%;
}

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

.keypoint-02-text {
    padding: 20px 0;
}

.text-description {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: center;
}

.text-description:last-child {
    margin-bottom: 0;
}

/* Tablet Responsive for Keypoint Section 02 */
@media (max-width: 992px) and (min-width: 769px) {
    .keypoint-section-02 {
        padding: 60px 0;
    }

    .keypoint-02-header {
        margin-bottom: 50px;
    }

    .keypoint-02-content {
        gap: 40px;
        padding: 0 30px;
    }

    .text-description {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Responsive for Keypoint Section 02 */
@media (max-width: 768px) {
    .keypoint-section-02 {
        padding: 50px 0;
    }

    .keypoint-02-header {
        margin-bottom: 40px;
    }

    .keypoint-02-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .keypoint-02-text {
        padding: 0;
    }

    .text-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
}

/* ===== Keypoint Section 03 Styles ===== */
.keypoint-section-03 {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
}

.keypoint-03-header {
    text-align: center;
    margin-bottom: 60px;
}

.keypoint-03-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.keypoint-03-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

    .case-slider-container {
    overflow: hidden;
}

.case-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.case-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    margin-bottom: 30px;
}

.case-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-label {
    font-size: 18px;
    font-weight: 700;
    color: #a0a3ff;
    text-align: center;
    margin: 0 0 15px 0;
    padding: 10px;
}

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

.case-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.case-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.case-filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: #ffffff;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-filter-btn.active,
.case-filter-btn:hover {
    border-color: #a0a3ff;
    background: #a0a3ff;
    color: #ffffff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #a0a3ff;
    border-color: #a0a3ff;
}

.slider-arrow:hover svg {
    stroke: #ffffff;
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Tablet Responsive for Before After Case */
@media (max-width: 992px) and (min-width: 769px) {
    .before-after-case-section {
        padding: 60px 0;
    }

    .case-main-title {
        font-size: 32px;
    }

    .case-slider {
        padding: 0 50px;
    }

    .case-images {
        gap: 25px;
    }

    .case-title {
        font-size: 22px;
    }
}

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

    .case-header {
        margin-bottom: 40px;
    }

    .case-main-title {
        font-size: 26px;
    }

    .case-slider {
        padding: 0 45px;
    }

    .case-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .case-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .case-label {
        font-size: 16px;
        margin-bottom: 12px;
        padding: 8px;
    }

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

    .case-filter-btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}
/**
 * Lifting Full Facelift Page Inline Styles
 * Extracted from inline <style> tags
 */


    .procedure-info-section .info-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }



    /* 안전수술케어 원칙 섹션 스타일 */
    .safety-principle-section {
        background: #f9f9f9;
        padding: 120px 0;
        position: relative;
    }

    .safety-principle-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
        text-align: center;
    }

    .safety-principle-bg-text {
        font-size: 100px;
        font-weight: 800;
        color: #e8e8e8;
        line-height: 1.1;
        letter-spacing: -2px;
        margin-bottom: 40px;
        text-transform: uppercase;
    }

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

    .safety-principle-subtitle {
        font-size: 13px;
        color: #999;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .safety-principle-title {
        font-size: 48px;
        font-weight: 700;
        color: #222;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .safety-principle-desc {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 50px;
    }

    .safety-principle-message {
        max-width: 900px;
        margin: 0 auto;
    }

    .safety-principle-text {
        font-size: 18px;
        color: #222;
        line-height: 1.9;
        font-weight: 500;
        word-break: keep-all;
    }

    .safety-principle-text .bold {
        font-weight: 700;
    }

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

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

        .safety-principle-bg-text {
            font-size: 70px;
        }

        .safety-principle-title {
            font-size: 40px;
        }

        .safety-principle-text {
            font-size: 16px;
        }
    }

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

        .safety-principle-container {
            padding: 0 20px;
        }

        .safety-principle-bg-text {
            font-size: 48px;
            margin-bottom: 30px;
        }

        .safety-principle-subtitle {
            font-size: 11px;
            letter-spacing: 2px;
        }

        .safety-principle-title {
            font-size: 32px;
            margin-bottom: 25px;
        }

        .safety-principle-desc {
            font-size: 14px;
            margin-bottom: 40px;
        }

        .safety-principle-text {
            font-size: 15px;
            line-height: 1.8;
        }
    }



    .angle-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
    }

    .angle-btn {
        padding: 10px 30px;
        border: 1px solid #ddd;
        background: #fff;
        border-radius: 25px;
        font-size: 14px;
        color: #666;
        cursor: pointer;
        transition: all 0.3s;
    }

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

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

    .before-after-notice {
        text-align: center;
        margin-top: 20px;
        font-size: 13px;
        color: #666;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .angle-buttons {
            gap: 8px;
            margin-top: 20px;
        }

        .angle-btn {
            padding: 8px 20px;
            font-size: 13px;
        }

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



    .smas-detail-section {
        margin-top: 80px;
        padding: 60px 0;
        background: #fff;
    }

    .smas-detail-container {
        display: grid;
        grid-template-columns: 45% 55%;
        gap: 60px;
        align-items: start;
    }

    .smas-detail-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    .smas-detail-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .smas-detail-item {
        padding: 0;
    }

    .smas-detail-title {
        font-size: 24px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
    }

    .smas-detail-text {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .smas-highlight {
        font-size: 16px;
        color: #a0a3ff;
        font-weight: 600;
        line-height: 1.8;
        margin-top: 20px;
    }

    @media (max-width: 992px) {
        .smas-detail-section {
            margin-top: 60px;
            padding: 40px 0;
        }

        .smas-detail-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .smas-detail-title {
            font-size: 20px;
        }

        .smas-detail-text {
            font-size: 14px;
        }

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

    @media (max-width: 768px) {
        .smas-detail-section {
            margin-top: 40px;
            padding: 30px 0;
        }

        .smas-detail-content {
            gap: 30px;
        }

        .smas-detail-title {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .smas-detail-text {
            font-size: 13px;
        }

        .smas-highlight {
            font-size: 14px;
            margin-top: 15px;
        }
    }



    .ear-deformity-prevention {
        margin-top: 20px;
        margin-bottom: 25px;
        text-align: center;
    }

    .prevention-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #a0a3ff;
        color: #fff;
        padding: 12px 30px;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 600;
    }

    .badge-icon {
        font-size: 20px;
        font-weight: bold;
    }

    /* 비교 이미지 스타일 개선 */
    .keypoint-03-images {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-bottom: 60px;
    }

    .comparison-image-item {
        flex: 1;
        max-width: 450px;
        text-align: center;
    }

    .comparison-image-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .comparison-label {
        font-size: 28px;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
        padding: 15px 25px;
        background: #f5f5f5;
        border-radius: 8px;
    }

    .comparison-label.highlight-label {
        background: #a0a3ff;
        color: #fff;
    }

    .arrow-icon {
        font-size: 48px;
        color: #a0a3ff;
        margin: 20px 0;
        font-weight: bold;
    }

    .comparison-result {
        font-size: 26px;
        font-weight: 700;
        padding: 15px 20px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .comparison-result.danger {
        color: #e74c3c;
        background: #fef5f5;
    }

    .comparison-result.success {
        color: #27ae60;
        background: #f0f9f4;
    }

    .keypoint-conclusion {
        text-align: center;
        padding: 50px 30px;
        background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
        border-radius: 15px;
        margin-top: 40px;
    }

    .conclusion-text {
        font-size: 32px;
        font-weight: 500;
        color: #333;
        line-height: 1.8;
    }

    .emphasis-text {
        font-size: 36px;
        font-weight: 800;
        color: #a0a3ff;
    }

    @media (max-width: 768px) {
        .ear-deformity-prevention {
            margin-top: 15px;
            margin-bottom: 20px;
        }

        .prevention-badge {
            font-size: 16px;
            padding: 10px 25px;
        }

        .badge-icon {
            font-size: 18px;
        }

        .keypoint-03-images {
            flex-direction: column;
            gap: 40px;
            margin-bottom: 40px;
        }

        .comparison-label {
            font-size: 20px;
            padding: 12px 20px;
        }

        .arrow-icon {
            font-size: 36px;
            margin: 15px 0;
        }

        .comparison-result {
            font-size: 18px;
            padding: 12px 15px;
        }

        .keypoint-conclusion {
            padding: 35px 20px;
            margin-top: 30px;
        }

        .conclusion-text {
            font-size: 22px;
        }

        .emphasis-text {
            font-size: 26px;
        }
    }



    .scar-badge {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    }

    .comparison-result.neutral {
        color: #555;
        background: #f8f9fa;
        font-size: 22px;
    }

    .scar-explanation {
        background: #fff;
        border: 2px solid #f0f0f0;
        padding: 50px 40px;
    }

    .explanation-title {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .explanation-text {
        font-size: 18px;
        color: #555;
        line-height: 1.9;
        margin-bottom: 20px;
        text-align: left;
    }

    .explanation-highlight {
        font-size: 20px;
        font-weight: 600;
        color: #a0a3ff;
        line-height: 1.9;
        margin-top: 25px;
        text-align: left;
    }

    @media (max-width: 768px) {
        .comparison-result.neutral {
            font-size: 16px;
        }

        .scar-explanation {
            padding: 35px 25px;
        }

        .explanation-title {
            font-size: 20px;
            margin-bottom: 20px;
        }

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

        .explanation-highlight {
            font-size: 16px;
            margin-top: 20px;
        }
    }



    .method-list {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-top: 50px;
    }

    .method-item {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 50px;
        align-items: center;
    }

    .method-image {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        overflow: hidden;
        background: #4a4a4a;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .method-content {
        text-align: left;
    }

    .method-title {
        font-size: 36px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

    .method-subtitle {
        font-size: 22px;
        font-weight: 600;
        color: #e74c3c;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .method-description {
        font-size: 17px;
        color: #555;
        line-height: 1.8;
    }

    @media (max-width: 992px) {
        .method-list {
            gap: 50px;
        }

        .method-item {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .method-image {
            width: 250px;
            height: 250px;
            margin: 0 auto;
        }

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

        .method-title {
            font-size: 30px;
        }

        .method-subtitle {
            font-size: 18px;
        }

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

    @media (max-width: 768px) {
        .method-list {
            gap: 40px;
            margin-top: 30px;
        }

        .method-image {
            width: 200px;
            height: 200px;
        }

        .method-title {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .method-subtitle {
            font-size: 16px;
            margin-bottom: 15px;
        }

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



    /* 응급처치 시스템 섹션 스타일 */
    .emergency-system-section {
        background: linear-gradient(135deg, rgba(52, 58, 76, 0.95) 0%, rgba(67, 73, 89, 0.95) 100%), url('https://images.unsplash.com/photo-1516549655169-df83a0774514?w=1600&h=800&fit=crop&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }

    .emergency-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
        position: relative;
        z-index: 2;
    }

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

    .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: 32px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 25px;
    }

    .emergency-description {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .emergency-sub-description {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.7;
    }

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

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

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

    .emergency-circle:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    }

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

    .emergency-item-title {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1.4;
    }

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

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

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

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

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

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

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

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

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

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

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

    @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;
            letter-spacing: 2px;
        }

        .emergency-title-kor {
            font-size: 24px;
            margin-bottom: 18px;
        }

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

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

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

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

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

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



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

    .anesthesia-main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        min-height: 600px;
    }

    .anesthesia-image-side {
        position: relative;
        overflow: hidden;
        background: #e0e0e0;
    }

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

    .anesthesia-text-side {
        padding: 80px 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #f5f5f5;
        position: relative;
    }

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

    .anesthesia-title-kor {
        font-size: 42px;
        font-weight: 800;
        color: #333;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 3px solid #333;
    }

    .anesthesia-highlight {
        font-size: 20px;
        font-weight: 700;
        color: #e74c3c;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .anesthesia-description {
        font-size: 18px;
        color: #666;
        line-height: 1.9;
        margin-bottom: 30px;
    }

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

    .anesthesia-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: #fff;
    }

    .anesthesia-feature-item {
        padding: 50px 30px;
        text-align: center;
        border-right: 1px solid #e0e0e0;
        transition: background 0.3s ease;
    }

    .anesthesia-feature-item:last-child {
        border-right: none;
    }

    .anesthesia-feature-item:hover {
        background: #f9f9f9;
    }

    .anesthesia-feature-number {
        font-size: 56px;
        font-weight: 300;
        color: #ddd;
        margin-bottom: 25px;
        line-height: 1;
    }

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

    .anesthesia-feature-desc {
        font-size: 16px;
        color: #999;
        line-height: 1.6;
    }

    @media (max-width: 992px) {
        .anesthesia-main-content {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .anesthesia-image-side {
            height: 400px;
        }

        .anesthesia-text-side {
            padding: 60px 50px;
        }

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

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

        .anesthesia-highlight {
            font-size: 18px;
            margin-bottom: 22px;
        }

        .anesthesia-description {
            font-size: 16px;
            margin-bottom: 25px;
        }

        .anesthesia-detail {
            font-size: 14px;
            margin-top: 20px;
        }

        .anesthesia-features {
            grid-template-columns: repeat(2, 1fr);
        }

        .anesthesia-feature-item {
            padding: 40px 25px;
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
        }

        .anesthesia-feature-item:nth-child(odd) {
            border-right: 1px solid #e0e0e0;
        }

        .anesthesia-feature-item:nth-last-child(-n+2) {
            border-bottom: none;
        }
    }

    @media (max-width: 768px) {
        .anesthesia-image-side {
            height: 350px;
        }

        .anesthesia-text-side {
            padding: 50px 30px;
        }

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

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

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

        .anesthesia-description {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .anesthesia-detail {
            font-size: 13px;
            line-height: 1.7;
            margin-top: 18px;
        }

        .anesthesia-features {
            grid-template-columns: 1fr;
        }

        .anesthesia-feature-item {
            padding: 35px 30px;
            border-right: none;
        }

        .anesthesia-feature-item:nth-child(odd) {
            border-right: none;
        }

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

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

        .anesthesia-feature-title {
            font-size: 15px;
            margin-bottom: 12px;
        }

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



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

        .promise-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 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;
            }

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

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

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