/**
 * Nose Tip Plasty Page Styles
 * 비공 내리기 페이지 스타일시트
 */


    /* 비궁내리기 소개 섹션 스타일 */
    .nostril-lowering-intro-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .nostril-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .nostril-intro-left {
        padding-right: 20px;
    }

    .nostril-intro-list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .nostril-intro-list li {
        font-size: 18px;
        color: #333;
        line-height: 2;
        padding-left: 30px;
        position: relative;
        margin-bottom: 10px;
    }

    .nostril-intro-list li:before {
        content: counter(item) ".";
        counter-increment: item;
        position: absolute;
        left: 0;
        font-weight: 600;
        color: #333;
    }

    .nostril-intro-list {
        counter-reset: item;
    }

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

    .nostril-highlight-desc {
        font-size: 16px;
        color: #555;
        line-height: 1.9;
        margin-bottom: 30px;
    }

    .nostril-small-image {
        width: 280px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
    }

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

    .nostril-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 15px 20px;
    }

    .nostril-badge-subtitle {
        font-size: 12px;
        color: #ccc;
        margin-bottom: 5px;
    }

    .nostril-badge-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .nostril-badge-keyword {
        font-size: 20px;
        font-weight: 800;
        color: #4ade80;
    }

    .nostril-intro-right {
        position: relative;
    }

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

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

    @media (max-width: 992px) {
        .nostril-lowering-intro-section {
            padding: 80px 0;
        }

        .nostril-lowering-container {
            padding: 0 30px;
        }

        .nostril-intro-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .nostril-intro-left {
            padding-right: 0;
        }

        .nostril-small-image {
            width: 240px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .nostril-lowering-intro-section {
            padding: 60px 0;
        }

        .nostril-lowering-container {
            padding: 0 20px;
        }

        .nostril-intro-grid {
            gap: 40px;
        }

        .nostril-intro-list li {
            font-size: 16px;
            padding-left: 25px;
        }

        .nostril-highlight-title {
            font-size: 18px;
        }

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

        .nostril-small-image {
            width: 100%;
            max-width: 280px;
        }

        .nostril-badge {
            padding: 12px 15px;
        }

        .nostril-badge-title {
            font-size: 16px;
        }

        .nostril-badge-keyword {
            font-size: 18px;
        }
    }



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

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

    .nostril-before-after-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .nostril-before-after-title {
        font-size: 36px;
        font-weight: 700;
        color: #666;
        margin-bottom: 50px;
    }

    .nostril-before-after-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .nostril-before-after-image-item {
        position: relative;
        overflow: hidden;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

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

    .nostril-before-after-controls {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

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

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

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

    .nostril-before-after-notice {
        text-align: center;
        font-size: 14px;
        color: #999;
        line-height: 1.7;
    }

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

        .nostril-before-after-container {
            padding: 0 30px;
        }

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

        .nostril-before-after-images {
            gap: 30px;
        }
    }

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

        .nostril-before-after-container {
            padding: 0 20px;
        }

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

        .nostril-before-after-images {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .nostril-before-after-controls {
            flex-direction: column;
            gap: 10px;
        }

        .nostril-control-btn {
            width: 100%;
            padding: 10px 20px;
        }
    }



    /* 핵심 포인트 섹션 스타일 */
    .key-points-section {
        background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%);
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }

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

    .key-points-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .key-points-left {
        padding-right: 20px;
    }

    .key-points-main-title {
        font-size: 42px;
        font-weight: 700;
        color: #222;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .key-points-subtitle {
        font-size: 48px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 50px;
    }

    .key-points-subtitle .highlight-text {
        color: #10b981;
        text-decoration: underline;
        text-decoration-thickness: 4px;
        text-underline-offset: 8px;
    }

    .key-points-subtitle .emphasis {
        color: #10b981;
        font-size: 52px;
    }

    .key-points-desc {
        font-size: 20px;
        color: #333;
        line-height: 1.9;
        margin-bottom: 15px;
    }

    .key-points-desc .highlight-green {
        background: #10b981;
        color: #fff;
        padding: 2px 8px;
        font-weight: 700;
    }

    .key-points-right {
        position: relative;
    }

    .key-points-image-wrapper {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .key-points-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    .key-points-badges {
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .key-point-badge {
        background: #10b981;
        color: #fff;
        padding: 18px 25px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        position: relative;
        transition: all 0.3s ease;
    }

    .key-point-badge:hover {
        transform: translateX(-5px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

    .key-point-badge:nth-child(2) {
        background: #fbbf24;
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }

    .key-point-badge:nth-child(2):hover {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    }

    .badge-number {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .badge-text {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }

    .signature-text {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        font-weight: 800;
        color: #333;
        transform: rotate(-5deg);
        text-shadow: 2px 2px 0 #fde047;
    }

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

        .key-points-container {
            padding: 0 30px;
        }

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

        .key-points-left {
            padding-right: 0;
        }

        .key-points-main-title {
            font-size: 36px;
        }

        .key-points-subtitle {
            font-size: 40px;
        }

        .key-points-subtitle .emphasis {
            font-size: 44px;
        }

        .key-points-desc {
            font-size: 18px;
        }

        .key-points-badges {
            position: static;
            transform: none;
            flex-direction: row;
            justify-content: center;
            margin-top: 30px;
        }
    }

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

        .key-points-container {
            padding: 0 20px;
        }

        .key-points-grid {
            gap: 40px;
        }

        .key-points-main-title {
            font-size: 28px;
        }

        .key-points-subtitle {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .key-points-subtitle .emphasis {
            font-size: 36px;
        }

        .key-points-desc {
            font-size: 16px;
        }

        .key-points-badges {
            flex-direction: column;
            gap: 10px;
        }

        .key-point-badge {
            padding: 15px 20px;
        }

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

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

        .signature-text {
            font-size: 20px;
        }
    }



    /* 추천 CASE 섹션 스타일 */
    .recommended-case-nostril-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .recommended-case-nostril-header {
        margin-bottom: 60px;
    }

    .recommended-case-nostril-title {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 50px;
    }

    .recommended-case-nostril-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }

    .case-nostril-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .case-nostril-item {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

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

    .case-nostril-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

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

    .case-nostril-content-box {
        padding: 30px 25px;
        text-align: center;
    }

    .case-nostril-name {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

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

    .case-nostril-checklist {
        background: #fff;
        border-radius: 8px;
        padding: 40px 35px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .checklist-header {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 30px;
    }

    .checklist-header .arrow {
        color: #ff6b6b;
        font-weight: 800;
    }

    .checklist-header .highlight {
        color: #333;
    }

    .checklist-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .checklist-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
        font-size: 16px;
        color: #333;
        line-height: 1.6;
    }

    .checklist-item:last-child {
        margin-bottom: 0;
    }

    .checklist-icon {
        color: #10b981;
        font-size: 20px;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .checklist-text {
        flex: 1;
    }

    .checklist-text .highlight-green {
        background: #10b981;
        color: #fff;
        padding: 2px 6px;
        font-weight: 600;
    }

    @media (max-width: 1200px) {
        .recommended-case-nostril-content {
            grid-template-columns: 1fr;
            gap: 50px;
        }

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

    @media (max-width: 992px) {
        .recommended-case-nostril-section {
            padding: 80px 0;
        }

        .recommended-case-nostril-container {
            padding: 0 30px;
        }

        .recommended-case-nostril-title {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .case-nostril-grid {
            gap: 25px;
        }
    }

    @media (max-width: 768px) {
        .recommended-case-nostril-section {
            padding: 60px 0;
        }

        .recommended-case-nostril-container {
            padding: 0 20px;
        }

        .recommended-case-nostril-title {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .recommended-case-nostril-content {
            gap: 40px;
        }

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

        .case-nostril-image {
            height: 220px;
        }

        .case-nostril-content-box {
            padding: 25px 20px;
        }

        .case-nostril-name {
            font-size: 18px;
        }

        .case-nostril-desc {
            font-size: 13px;
        }

        .case-nostril-checklist {
            padding: 30px 25px;
        }

        .checklist-header {
            font-size: 20px;
        }

        .checklist-item {
            font-size: 14px;
        }
    }



    /* 핵심포인트 01 섹션 스타일 */
    .key-point-01-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

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

    .key-point-01-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
    }

    .key-point-01-header-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }

    .key-point-01-reference {
        font-size: 14px;
        color: #ff6b6b;
    }

    .key-point-01-reference a {
        color: #2196f3;
        text-decoration: none;
    }

    .key-point-01-content {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .key-point-01-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .key-point-01-image {
        position: relative;
        background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    }

    .key-point-01-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .key-point-01-text {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .sample-badge {
        font-size: 14px;
        color: #ff6b6b;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .key-point-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 30px;
    }

    .key-point-title {
        font-size: 28px;
        font-weight: 700;
        color: #222;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .key-point-description {
        font-size: 16px;
        color: #555;
        line-height: 1.9;
    }

    .key-point-01-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 2px solid #f0f0f0;
    }

    .key-point-diagrams {
        padding: 40px;
        background: #fafafa;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .diagram-label {
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
        margin-bottom: 20px;
    }

    .diagram-images {
        display: flex;
        gap: 20px;
        flex: 1;
    }

    .diagram-item {
        flex: 1;
        text-align: center;
    }

    .diagram-item img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 3px solid #e0e0e0;
        object-fit: cover;
    }

    .key-point-case {
        padding: 40px;
        background: #000;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .case-label {
        font-size: 14px;
        color: #4ade80;
        font-weight: 700;
        margin-bottom: 10px;
    }

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

    .case-description {
        font-size: 14px;
        color: #ccc;
        line-height: 1.7;
    }

    .text-replace-label {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
        font-weight: 700;
        color: #ff6b6b;
    }

    @media (max-width: 992px) {
        .key-point-01-section {
            padding: 80px 0;
        }

        .key-point-01-container {
            padding: 0 30px;
        }

        .key-point-01-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .key-point-01-header-title {
            font-size: 28px;
        }

        .key-point-01-main {
            grid-template-columns: 1fr;
        }

        .key-point-01-image {
            min-height: 400px;
        }

        .key-point-01-text {
            padding: 50px 40px;
        }

        .key-point-01-bottom {
            grid-template-columns: 1fr;
        }

        .diagram-images {
            gap: 15px;
        }

        .diagram-item img {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 768px) {
        .key-point-01-section {
            padding: 60px 0;
        }

        .key-point-01-container {
            padding: 0 20px;
        }

        .key-point-01-header-title {
            font-size: 24px;
        }

        .key-point-01-text {
            padding: 40px 30px;
        }

        .key-point-number {
            font-size: 60px;
        }

        .key-point-title {
            font-size: 24px;
        }

        .key-point-description {
            font-size: 15px;
        }

        .key-point-diagrams {
            padding: 30px 20px;
        }

        .diagram-images {
            flex-direction: column;
            gap: 15px;
        }

        .diagram-item img {
            width: 100px;
            height: 100px;
        }

        .key-point-case {
            padding: 30px 20px;
        }

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

        .case-description {
            font-size: 13px;
        }
    }



    /* 핵심포인트 02 섹션 스타일 */
    .key-point-02-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .key-point-02-header {
        margin-bottom: 60px;
    }

    .key-point-02-header-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }

    .key-point-02-content {
        background: #f9f9f9;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .key-point-02-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .key-point-02-image-section {
        position: relative;
        background: #e8e8e8;
        padding: 40px;
    }

    .key-point-02-main-image {
        width: 100%;
        height: 350px;
        margin-bottom: 30px;
    }

    .key-point-02-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

    .key-point-02-diagrams {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .image-replace-label {
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
        margin-right: 20px;
    }

    .key-point-02-diagram-images {
        display: flex;
        gap: 20px;
        flex: 1;
    }

    .key-point-02-diagram-item {
        flex: 1;
        text-align: center;
    }

    .key-point-02-diagram-item img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 3px solid #ddd;
        object-fit: cover;
    }

    .key-point-02-text {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        background: #fff;
    }

    .key-point-02-top {
        flex: 1;
    }

    .key-point-02-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
    }

    .key-point-02-title {
        font-size: 24px;
        font-weight: 700;
        color: #222;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .key-point-02-description {
        font-size: 15px;
        color: #555;
        line-height: 1.9;
    }

    .key-point-02-case-box {
        background: #000;
        color: #fff;
        padding: 30px;
        border-radius: 8px;
        margin-top: 30px;
    }

    .case-02-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #333;
    }

    .case-02-label {
        font-size: 14px;
        color: #4ade80;
        font-weight: 700;
    }

    .case-02-title {
        font-size: 18px;
        font-weight: 700;
    }

    .case-02-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .case-02-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.6;
    }

    .case-02-item:last-child {
        margin-bottom: 0;
    }

    .case-02-bullet {
        color: #4ade80;
        font-weight: 700;
        flex-shrink: 0;
    }

    .case-02-text {
        flex: 1;
        color: #ddd;
    }

    .text-replace-label-02 {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
        font-weight: 700;
        color: #ff6b6b;
    }

    @media (max-width: 992px) {
        .key-point-02-section {
            padding: 80px 0;
        }

        .key-point-02-container {
            padding: 0 30px;
        }

        .key-point-02-header-title {
            font-size: 28px;
        }

        .key-point-02-main {
            grid-template-columns: 1fr;
        }

        .key-point-02-image-section {
            padding: 30px;
        }

        .key-point-02-main-image {
            height: 300px;
        }

        .key-point-02-text {
            padding: 50px 40px;
        }

        .key-point-02-diagram-item img {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 768px) {
        .key-point-02-section {
            padding: 60px 0;
        }

        .key-point-02-container {
            padding: 0 20px;
        }

        .key-point-02-header-title {
            font-size: 24px;
        }

        .key-point-02-image-section {
            padding: 20px;
        }

        .key-point-02-main-image {
            height: 250px;
            margin-bottom: 20px;
        }

        .key-point-02-text {
            padding: 40px 30px;
        }

        .key-point-02-number {
            font-size: 60px;
        }

        .key-point-02-title {
            font-size: 20px;
        }

        .key-point-02-description {
            font-size: 14px;
        }

        .key-point-02-diagrams {
            flex-direction: column;
            align-items: flex-start;
        }

        .key-point-02-diagram-images {
            gap: 15px;
        }

        .key-point-02-diagram-item img {
            width: 100px;
            height: 100px;
        }

        .key-point-02-case-box {
            padding: 25px 20px;
        }

        .case-02-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .case-02-title {
            font-size: 16px;
        }

        .case-02-item {
            font-size: 13px;
        }
    }



    /* 핵심포인트 03 섹션 스타일 */
    .key-point-03-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

    .key-point-03-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .key-point-03-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .key-point-03-left {
        position: relative;
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .key-point-03-diagram-images {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .key-point-03-diagram-item {
        flex: 1;
        text-align: center;
    }

    .key-point-03-diagram-item img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 3px solid #e0e0e0;
        object-fit: cover;
    }

    .image-replace-label-03 {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
    }

    .key-point-03-right {
        position: relative;
    }

    .key-point-03-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
    }

    .key-point-03-case-box {
        background: #000;
        color: #fff;
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .case-03-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }

    .case-03-label {
        font-size: 14px;
        color: #4ade80;
        font-weight: 700;
    }

    .case-03-title {
        font-size: 20px;
        font-weight: 700;
    }

    .case-03-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .case-03-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    .case-03-item:last-child {
        margin-bottom: 0;
    }

    .case-03-bullet {
        color: #4ade80;
        font-weight: 700;
        flex-shrink: 0;
    }

    .case-03-text {
        flex: 1;
        color: #ddd;
    }

    .text-replace-label-03 {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
    }

    @media (max-width: 992px) {
        .key-point-03-section {
            padding: 80px 0;
        }

        .key-point-03-container {
            padding: 0 30px;
        }

        .key-point-03-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .key-point-03-left {
            padding: 30px;
        }

        .key-point-03-diagram-item img {
            width: 150px;
            height: 150px;
        }
    }

    @media (max-width: 768px) {
        .key-point-03-section {
            padding: 60px 0;
        }

        .key-point-03-container {
            padding: 0 20px;
        }

        .key-point-03-content {
            gap: 30px;
        }

        .key-point-03-left {
            padding: 25px 20px;
        }

        .key-point-03-number {
            font-size: 60px;
        }

        .key-point-03-diagram-images {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .key-point-03-diagram-item img {
            width: 140px;
            height: 140px;
        }

        .key-point-03-case-box {
            padding: 25px 20px;
        }

        .case-03-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .case-03-title {
            font-size: 18px;
        }

        .case-03-item {
            font-size: 14px;
        }
    }



    /* Q&A 섹션 스타일 */
    .nostril-qna-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

    .nostril-qna-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 50px;
    }

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

    .nostril-qna-badge {
        display: inline-block;
        background: #9e9e9e;
        color: #fff;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .nostril-qna-list {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .nostril-qna-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nostril-question {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .nostril-question-bubble {
        background: #10b981;
        color: #fff;
        padding: 20px 25px;
        border-radius: 15px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.6;
        max-width: 400px;
    }

    .nostril-question-icon {
        width: 50px;
        height: 50px;
        background: #e0f2fe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 24px;
    }

    .nostril-answer {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .nostril-doctor-icon {
        width: 50px;
        height: 50px;
        background: #f5f5f5;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .nostril-doctor-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nostril-answer-content {
        flex: 1;
    }

    .nostril-answer-label {
        font-size: 14px;
        font-weight: 700;
        color: #10b981;
        margin-bottom: 10px;
    }

    .nostril-answer-bubble {
        background: #f5f5f5;
        padding: 20px 25px;
        border-radius: 15px;
        font-size: 15px;
        color: #333;
        line-height: 1.8;
    }

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

        .nostril-qna-container {
            padding: 0 30px;
        }

        .nostril-qna-list {
            gap: 40px;
        }
    }

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

        .nostril-qna-container {
            padding: 0 20px;
        }

        .nostril-qna-badge {
            font-size: 14px;
            padding: 10px 25px;
        }

        .nostril-qna-list {
            gap: 35px;
        }

        .nostril-question {
            flex-direction: column;
            align-items: flex-start;
        }

        .nostril-question-bubble {
            font-size: 15px;
            padding: 18px 22px;
            max-width: 100%;
        }

        .nostril-question-icon {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }

        .nostril-answer {
            flex-direction: column;
        }

        .nostril-doctor-icon {
            width: 45px;
            height: 45px;
        }

        .nostril-answer-bubble {
            font-size: 14px;
            padding: 18px 22px;
        }
    }



    /* 최종 메시지 섹션 스타일 */
    .nostril-final-message-section {
        background: #000;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .nostril-final-message-container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .nostril-final-message-image {
        width: 100%;
        height: 600px;
        position: relative;
        overflow: hidden;
    }

    .nostril-final-message-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .nostril-final-message-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 80px;
    }

    .nostril-final-message-content {
        max-width: 800px;
        text-align: center;
        color: #fff;
    }

    .nostril-final-message-title {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 40px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .nostril-final-message-description {
        font-size: 18px;
        line-height: 1.9;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 992px) {
        .nostril-final-message-image {
            height: 500px;
        }

        .nostril-final-message-overlay {
            padding: 0 50px;
        }

        .nostril-final-message-title {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .nostril-final-message-description {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .nostril-final-message-image {
            height: 450px;
        }

        .nostril-final-message-overlay {
            padding: 0 30px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
        }

        .nostril-final-message-title {
            font-size: 28px;
            margin-bottom: 25px;
        }

        .nostril-final-message-description {
            font-size: 15px;
            line-height: 1.8;
        }
    }



    /* 얼굴 비율 분석 섹션 스타일 */
    .facial-proportion-analysis-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

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

    .facial-proportion-header {
        margin-bottom: 40px;
    }

    .facial-proportion-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 20px;
    }

    .facial-proportion-title {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .facial-proportion-title .highlight {
        color: #ff6b6b;
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }

    .facial-proportion-subtitle {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 10px;
    }

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

    .facial-proportion-image-item {
        position: relative;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

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

    .facial-image-label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.95);
        padding: 20px 30px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .facial-image-label-title {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .facial-image-label-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .facial-image-replace {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 107, 107, 0.9);
        color: #fff;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
    }

    .facial-proportion-notice {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        border-left: 4px solid #ff6b6b;
    }

    .notice-heading {
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
        margin-bottom: 15px;
    }

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

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

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

        .facial-proportion-number {
            font-size: 70px;
        }

        .facial-proportion-title {
            font-size: 24px;
        }

        .facial-proportion-images {
            gap: 25px;
        }
    }

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

        .facial-proportion-analysis-container {
            padding: 0 20px;
        }

        .facial-proportion-number {
            font-size: 60px;
        }

        .facial-proportion-title {
            font-size: 22px;
        }

        .facial-proportion-subtitle {
            font-size: 15px;
        }

        .facial-proportion-images {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .facial-image-label {
            padding: 15px 20px;
        }

        .facial-image-label-title {
            font-size: 16px;
        }

        .facial-image-label-desc {
            font-size: 13px;
        }

        .facial-proportion-notice {
            padding: 25px 20px;
        }

        .notice-heading {
            font-size: 16px;
        }

        .notice-text {
            font-size: 14px;
        }
    }



    /* VIBE 코성형 얼굴 정밀분석 섹션 스타일 */
    .vibe-facial-analysis-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .vibe-analysis-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 2px solid #e0e0e0;
    }

    .vibe-analysis-header-left h2 {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .vibe-analysis-header-left p {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
    }

    .vibe-analysis-header-right {
        text-align: right;
    }

    .vibe-reference-label {
        font-size: 13px;
        color: #2196f3;
        margin-bottom: 5px;
    }

    .vibe-reference-link {
        font-size: 13px;
        color: #2196f3;
        text-decoration: none;
        word-break: break-all;
    }

    .vibe-reference-link:hover {
        text-decoration: underline;
    }

    .vibe-analysis-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .vibe-analysis-item {
        background: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

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

    .vibe-analysis-image {
        width: 100%;
        height: 280px;
        overflow: hidden;
        position: relative;
    }

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

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

    .vibe-analysis-category {
        font-size: 12px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .vibe-analysis-name {
        font-size: 16px;
        font-weight: 700;
        color: #222;
        margin-bottom: 12px;
    }

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

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

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

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

        .vibe-analysis-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .vibe-analysis-header-left h2 {
            font-size: 24px;
        }

        .vibe-analysis-header-right {
            text-align: left;
        }

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

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

        .vibe-facial-analysis-container {
            padding: 0 20px;
        }

        .vibe-analysis-header-left h2 {
            font-size: 22px;
        }

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

        .vibe-analysis-image {
            height: 320px;
        }

        .vibe-analysis-content {
            padding: 20px 18px;
        }

        .vibe-analysis-name {
            font-size: 15px;
        }

        .vibe-analysis-desc {
            font-size: 12px;
        }
    }



    /* VIBE 수술 전 정밀진단 섹션 스타일 */
    .vibe-pre-surgery-diagnosis-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

    .vibe-pre-surgery-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .vibe-diagnosis-section-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
        margin-bottom: 60px;
    }

    .vibe-diagnosis-main-item {
        background: #fff;
        padding: 60px 50px;
        border-radius: 12px;
        margin-bottom: 40px;
    }

    .vibe-diagnosis-header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 40px;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .vibe-diagnosis-number {
        font-size: 120px;
        font-weight: 800;
        color: #333;
        line-height: 1;
    }

    .vibe-diagnosis-title-group {
        padding-top: 20px;
    }

    .vibe-diagnosis-main-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

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

    .vibe-diagnosis-equipment-image {
        width: 350px;
        position: relative;
    }

    .vibe-diagnosis-equipment-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .vibe-equipment-label {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 59, 48, 0.9);
        color: #fff;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
    }

    .vibe-ct-images-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .vibe-ct-image-placeholder {
        background: #f9f9f9;
        border: 2px solid #ddd;
        border-radius: 8px;
        padding: 80px 40px;
        text-align: center;
    }

    .vibe-ct-image-placeholder p {
        font-size: 16px;
        color: #999;
        font-weight: 600;
    }

    .vibe-diagnosis-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .vibe-diagnosis-feature-item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 30px;
        align-items: center;
    }

    .vibe-feature-image {
        width: 100%;
        background: #f9f9f9;
        border-radius: 8px;
        padding: 20px;
    }

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

    .vibe-feature-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .vibe-feature-content p {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
    }

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

        .vibe-pre-surgery-container {
            padding: 0 30px;
        }

        .vibe-diagnosis-section-title {
            font-size: 28px;
            margin-bottom: 50px;
        }

        .vibe-diagnosis-main-item {
            padding: 50px 40px;
        }

        .vibe-diagnosis-header {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .vibe-diagnosis-number {
            font-size: 100px;
        }

        .vibe-diagnosis-equipment-image {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .vibe-diagnosis-features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

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

        .vibe-pre-surgery-container {
            padding: 0 20px;
        }

        .vibe-diagnosis-section-title {
            font-size: 24px;
            margin-bottom: 40px;
        }

        .vibe-diagnosis-main-item {
            padding: 40px 30px;
        }

        .vibe-diagnosis-number {
            font-size: 80px;
        }

        .vibe-diagnosis-title-group {
            padding-top: 10px;
        }

        .vibe-diagnosis-main-title {
            font-size: 20px;
        }

        .vibe-diagnosis-desc {
            font-size: 14px;
        }

        .vibe-ct-images-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .vibe-diagnosis-feature-item {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .vibe-feature-image {
            max-width: 200px;
            margin: 0 auto;
        }

        .vibe-feature-content h3 {
            font-size: 20px;
            text-align: center;
        }

        .vibe-feature-content p {
            font-size: 14px;
            text-align: center;
        }
    }



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

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

    .vibe-recovery-section-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
        margin-bottom: 60px;
    }

    .vibe-recovery-main-item {
        background: #fff;
        padding: 60px 50px;
        border-radius: 12px;
    }

    .vibe-recovery-content {
        display: grid;
        grid-template-columns: auto 1fr 1fr;
        gap: 50px;
        align-items: flex-start;
    }

    .vibe-recovery-number {
        font-size: 120px;
        font-weight: 800;
        color: #333;
        line-height: 1;
    }

    .vibe-recovery-text-group {
        padding-top: 20px;
    }

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

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

    .vibe-recovery-images {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vibe-recovery-image-item {
        position: relative;
        background: #f5f5f5;
        border-radius: 8px;
        overflow: hidden;
    }

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

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

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

        .vibe-recovery-section-title {
            font-size: 28px;
            margin-bottom: 50px;
        }

        .vibe-recovery-main-item {
            padding: 50px 40px;
        }

        .vibe-recovery-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .vibe-recovery-number {
            font-size: 100px;
        }

        .vibe-recovery-images {
            grid-template-columns: repeat(2, 1fr);
        }
    }

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

        .vibe-recovery-container {
            padding: 0 20px;
        }

        .vibe-recovery-section-title {
            font-size: 24px;
            margin-bottom: 40px;
        }

        .vibe-recovery-main-item {
            padding: 40px 30px;
        }

        .vibe-recovery-number {
            font-size: 80px;
        }

        .vibe-recovery-main-title {
            font-size: 20px;
        }

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

        .vibe-recovery-images {
            grid-template-columns: 1fr;
        }
    }



    /* Find Your VIBE 섹션 스타일 */
    .find-your-vibe-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .find-vibe-header {
        background: #2d3748;
        color: #fff;
        padding: 50px 60px;
        margin-bottom: 50px;
        position: relative;
    }

    .find-vibe-title {
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .find-vibe-title .vibe-word {
        font-weight: 800;
    }

    .find-vibe-subtitle {
        font-size: 20px;
        font-weight: 500;
        color: #e0e0e0;
        letter-spacing: -0.5px;
    }

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

    .find-vibe-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .find-vibe-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 992px) {
        .find-your-vibe-section {
            padding: 80px 0;
        }

        .find-vibe-container {
            padding: 0 30px;
        }

        .find-vibe-header {
            padding: 40px 40px;
            margin-bottom: 40px;
        }

        .find-vibe-title {
            font-size: 36px;
        }

        .find-vibe-subtitle {
            font-size: 18px;
        }

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

        .find-vibe-item img {
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .find-your-vibe-section {
            padding: 60px 0;
        }

        .find-vibe-container {
            padding: 0 20px;
        }

        .find-vibe-header {
            padding: 30px 30px;
            margin-bottom: 30px;
        }

        .find-vibe-title {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .find-vibe-subtitle {
            font-size: 16px;
        }

        .find-vibe-gallery {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .find-vibe-item img {
            height: 320px;
        }
    }



/* 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(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.solution-item img {
    width: 100%;
    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 {
        gap: 40px;
        padding: 0 30px;
    }
}


/* Extracted from inline <style> tags */


    /* 비공내리기 소개 섹션 스타일 */
    .nostril-lowering-intro-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .nostril-intro-title {
        font-size: 42px;
        font-weight: 700;
        color: #222;
        margin-bottom: 50px;
        line-height: 1.5;
        word-break: keep-all;
    }

    .nostril-intro-desc {
        font-size: 18px;
        color: #555;
        line-height: 1.9;
        margin-bottom: 20px;
        word-break: keep-all;
    }

    .nostril-intro-desc:last-of-type {
        margin-bottom: 50px;
    }

    .nostril-highlight-box {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        padding: 40px 50px;
        border-left: 4px solid #2196f3;
        margin-top: 40px;
    }

    .nostril-highlight-text {
        font-size: 20px;
        color: #1565c0;
        line-height: 1.8;
        font-weight: 600;
        word-break: keep-all;
    }

    @media (max-width: 992px) {
        .nostril-lowering-intro-section {
            padding: 80px 0;
        }

        .nostril-lowering-container {
            padding: 0 30px;
        }

        .nostril-intro-title {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .nostril-intro-desc {
            font-size: 16px;
        }

        .nostril-highlight-text {
            font-size: 18px;
        }
    }

    @media (max-width: 768px) {
        .nostril-lowering-intro-section {
            padding: 60px 0;
        }

        .nostril-lowering-container {
            padding: 0 20px;
        }

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

        .nostril-intro-desc {
            font-size: 15px;
        }

        .nostril-highlight-box {
            padding: 30px 25px;
        }

        .nostril-highlight-text {
            font-size: 16px;
        }
    }



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

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

    .nostril-before-after-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .nostril-before-after-title {
        font-size: 36px;
        font-weight: 700;
        color: #666;
        margin-bottom: 50px;
    }

    .nostril-before-after-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .nostril-before-after-image-item {
        position: relative;
        overflow: hidden;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

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

    .nostril-before-after-controls {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

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

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

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

    .nostril-before-after-notice {
        text-align: center;
        font-size: 14px;
        color: #999;
        line-height: 1.7;
    }

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

        .nostril-before-after-container {
            padding: 0 30px;
        }

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

        .nostril-before-after-images {
            gap: 30px;
        }
    }

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

        .nostril-before-after-container {
            padding: 0 20px;
        }

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

        .nostril-before-after-images {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .nostril-before-after-controls {
            flex-direction: column;
            gap: 10px;
        }

        .nostril-control-btn {
            width: 100%;
            padding: 10px 20px;
        }
    }



    /* 핵심 포인트 섹션 스타일 */
    .key-points-section {
        background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%);
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }

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

    .key-points-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .key-points-left {
        padding-right: 20px;
    }

    .key-points-main-title {
        font-size: 42px;
        font-weight: 700;
        color: #222;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .key-points-subtitle {
        font-size: 48px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 50px;
    }

    .key-points-subtitle .highlight-text {
        color: #10b981;
        text-decoration: underline;
        text-decoration-thickness: 4px;
        text-underline-offset: 8px;
    }

    .key-points-subtitle .emphasis {
        color: #10b981;
        font-size: 52px;
    }

    .key-points-desc {
        font-size: 20px;
        color: #333;
        line-height: 1.9;
        margin-bottom: 15px;
    }

    .key-points-desc .highlight-green {
        background: #10b981;
        color: #fff;
        padding: 2px 8px;
        font-weight: 700;
    }

    .key-points-right {
        position: relative;
    }

    .key-points-image-wrapper {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .key-points-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    .key-points-badges {
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .key-point-badge {
        background: #10b981;
        color: #fff;
        padding: 18px 25px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        position: relative;
        transition: all 0.3s ease;
    }

    .key-point-badge:hover {
        transform: translateX(-5px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

    .key-point-badge:nth-child(2) {
        background: #fbbf24;
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }

    .key-point-badge:nth-child(2):hover {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    }

    .badge-text {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .badge-desc {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }

    .signature-text {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        font-weight: 800;
        color: #333;
        transform: rotate(-5deg);
        text-shadow: 2px 2px 0 #fde047;
    }

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

        .key-points-container {
            padding: 0 30px;
        }

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

        .key-points-left {
            padding-right: 0;
        }

        .key-points-main-title {
            font-size: 36px;
        }

        .key-points-subtitle {
            font-size: 40px;
        }

        .key-points-subtitle .emphasis {
            font-size: 44px;
        }

        .key-points-desc {
            font-size: 18px;
        }

        .key-points-badges {
            position: static;
            transform: none;
            flex-direction: row;
            justify-content: center;
            margin-top: 30px;
        }
    }

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

        .key-points-container {
            padding: 0 20px;
        }

        .key-points-grid {
            gap: 40px;
        }

        .key-points-main-title {
            font-size: 28px;
        }

        .key-points-subtitle {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .key-points-subtitle .emphasis {
            font-size: 36px;
        }

        .key-points-desc {
            font-size: 16px;
        }

        .key-points-badges {
            flex-direction: column;
            gap: 10px;
        }

        .key-point-badge {
            padding: 15px 20px;
        }

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

        .badge-desc {
            font-size: 13px;
        }

        .signature-text {
            font-size: 20px;
        }
    }



    /* 추천 CASE 섹션 스타일 */
    .recommended-case-nostril-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .recommended-case-nostril-header {
        margin-bottom: 60px;
        text-align: center;
    }

    .recommended-case-nostril-title {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 50px;
    }

    .case-nostril-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .case-nostril-item {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

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

    .case-nostril-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

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

    .case-nostril-content {
        padding: 30px 25px;
        text-align: center;
    }

    .case-nostril-name {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

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

    @media (max-width: 992px) {
        .recommended-case-nostril-section {
            padding: 80px 0;
        }

        .recommended-case-nostril-container {
            padding: 0 30px;
        }

        .recommended-case-nostril-title {
            font-size: 32px;
            margin-bottom: 40px;
        }

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

    @media (max-width: 768px) {
        .recommended-case-nostril-section {
            padding: 60px 0;
        }

        .recommended-case-nostril-container {
            padding: 0 20px;
        }

        .recommended-case-nostril-title {
            font-size: 28px;
            margin-bottom: 30px;
        }

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

        .case-nostril-image {
            height: 220px;
        }

        .case-nostril-content {
            padding: 25px 20px;
        }

        .case-nostril-name {
            font-size: 18px;
        }

        .case-nostril-desc {
            font-size: 13px;
        }
    }



    /* 핵심포인트 01 섹션 스타일 */
    .key-point-01-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

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

    .key-point-01-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
    }

    .key-point-01-header-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }

    .key-point-01-reference {
        font-size: 14px;
        color: #ff6b6b;
    }

    .key-point-01-reference a {
        color: #2196f3;
        text-decoration: none;
    }

    .key-point-01-content {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .key-point-01-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .key-point-01-image {
        position: relative;
        background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    }

    .key-point-01-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .key-point-01-text {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .sample-badge {
        font-size: 14px;
        color: #ff6b6b;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .key-point-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
    }

    .key-point-title {
        font-size: 28px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .key-point-description {
        font-size: 16px;
        color: #555;
        line-height: 1.9;
    }

    .key-point-01-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 2px solid #f0f0f0;
    }

    .key-point-diagrams {
        padding: 40px;
        background: #fafafa;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .diagram-label {
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
        margin-bottom: 20px;
    }

    .diagram-images {
        display: flex;
        gap: 20px;
        flex: 1;
    }

    .diagram-item {
        flex: 1;
        text-align: center;
    }

    .diagram-item img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 3px solid #e0e0e0;
        object-fit: cover;
    }

    .key-point-case {
        padding: 40px;
        background: #000;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .case-label {
        font-size: 14px;
        color: #4ade80;
        font-weight: 700;
        margin-bottom: 10px;
    }

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

    .case-description {
        font-size: 14px;
        color: #ccc;
        line-height: 1.7;
    }

    .text-replace-label {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
        font-weight: 700;
        color: #ff6b6b;
    }

    @media (max-width: 992px) {
        .key-point-01-section {
            padding: 80px 0;
        }

        .key-point-01-container {
            padding: 0 30px;
        }

        .key-point-01-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .key-point-01-header-title {
            font-size: 28px;
        }

        .key-point-01-main {
            grid-template-columns: 1fr;
        }

        .key-point-01-image {
            min-height: 400px;
        }

        .key-point-01-text {
            padding: 50px 40px;
        }

        .key-point-01-bottom {
            grid-template-columns: 1fr;
        }

        .diagram-images {
            gap: 15px;
        }

        .diagram-item img {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 768px) {
        .key-point-01-section {
            padding: 60px 0;
        }

        .key-point-01-container {
            padding: 0 20px;
        }

        .key-point-01-header-title {
            font-size: 24px;
        }

        .key-point-01-text {
            padding: 40px 30px;
        }

        .key-point-number {
            font-size: 60px;
        }

        .key-point-title {
            font-size: 24px;
        }

        .key-point-description {
            font-size: 15px;
        }

        .key-point-diagrams {
            padding: 30px 20px;
        }

        .diagram-images {
            flex-direction: column;
            gap: 15px;
        }

        .diagram-item img {
            width: 100px;
            height: 100px;
        }

        .key-point-case {
            padding: 30px 20px;
        }

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

        .case-description {
            font-size: 13px;
        }
    }



    /* 핵심포인트 02 섹션 스타일 */
    .key-point-02-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .key-point-02-header {
        margin-bottom: 60px;
    }

    .key-point-02-header-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }

    .key-point-02-content {
        background: #f9f9f9;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .key-point-02-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .key-point-02-image-section {
        position: relative;
        background: #e8e8e8;
        padding: 40px;
    }

    .key-point-02-main-image {
        width: 100%;
        height: 350px;
        margin-bottom: 30px;
    }

    .key-point-02-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

    .key-point-02-diagrams {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .image-replace-label {
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
        margin-right: 20px;
    }

    .key-point-02-diagram-images {
        display: flex;
        gap: 20px;
        flex: 1;
    }

    .key-point-02-diagram-item {
        flex: 1;
        text-align: center;
    }

    .key-point-02-diagram-item img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 3px solid #ddd;
        object-fit: cover;
    }

    .key-point-02-text {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        background: #fff;
    }

    .key-point-02-top {
        flex: 1;
    }

    .key-point-02-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
    }

    .key-point-02-title {
        font-size: 24px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .key-point-02-description {
        font-size: 15px;
        color: #555;
        line-height: 1.9;
    }

    .key-point-02-case-box {
        background: #000;
        color: #fff;
        padding: 30px;
        border-radius: 8px;
        margin-top: 30px;
    }

    .case-02-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #333;
    }

    .case-02-label {
        font-size: 14px;
        color: #4ade80;
        font-weight: 700;
    }

    .case-02-title {
        font-size: 18px;
        font-weight: 700;
    }

    .case-02-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .case-02-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.6;
    }

    .case-02-item:last-child {
        margin-bottom: 0;
    }

    .case-02-bullet {
        color: #4ade80;
        font-weight: 700;
        flex-shrink: 0;
    }

    .case-02-text {
        flex: 1;
        color: #ddd;
    }

    .text-replace-label-02 {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
        font-weight: 700;
        color: #ff6b6b;
    }

    @media (max-width: 992px) {
        .key-point-02-section {
            padding: 80px 0;
        }

        .key-point-02-container {
            padding: 0 30px;
        }

        .key-point-02-header-title {
            font-size: 28px;
        }

        .key-point-02-main {
            grid-template-columns: 1fr;
        }

        .key-point-02-image-section {
            padding: 30px;
        }

        .key-point-02-main-image {
            height: 300px;
        }

        .key-point-02-text {
            padding: 50px 40px;
        }

        .key-point-02-diagram-item img {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 768px) {
        .key-point-02-section {
            padding: 60px 0;
        }

        .key-point-02-container {
            padding: 0 20px;
        }

        .key-point-02-header-title {
            font-size: 24px;
        }

        .key-point-02-image-section {
            padding: 20px;
        }

        .key-point-02-main-image {
            height: 250px;
            margin-bottom: 20px;
        }

        .key-point-02-text {
            padding: 40px 30px;
        }

        .key-point-02-number {
            font-size: 60px;
        }

        .key-point-02-title {
            font-size: 20px;
        }

        .key-point-02-description {
            font-size: 14px;
        }

        .key-point-02-diagrams {
            flex-direction: column;
            align-items: flex-start;
        }

        .key-point-02-diagram-images {
            gap: 15px;
        }

        .key-point-02-diagram-item img {
            width: 100px;
            height: 100px;
        }

        .key-point-02-case-box {
            padding: 25px 20px;
        }

        .case-02-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .case-02-title {
            font-size: 16px;
        }

        .case-02-item {
            font-size: 13px;
        }
    }



    /* 핵심포인트 03 섹션 스타일 */
    .key-point-03-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

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

    .key-point-03-header {
        margin-bottom: 60px;
    }

    .key-point-03-header-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }

    .key-point-03-content {
        background: #f9f9f9;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .key-point-03-left {
        position: relative;
        background: #e8e8e8;
        padding: 40px;
    }

    .key-point-03-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .key-point-03-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

    .image-replace-label-03 {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
    }

    .key-point-03-right {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        position: relative;
        background: #fff;
    }

    .key-point-03-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
    }

    .key-point-03-title {
        font-size: 24px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .key-point-03-description {
        font-size: 15px;
        color: #555;
        line-height: 1.9;
    }

    .key-point-03-case-box {
        background: #000;
        color: #fff;
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .case-03-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }

    .case-03-label {
        font-size: 14px;
        color: #4ade80;
        font-weight: 700;
    }

    .case-03-title {
        font-size: 20px;
        font-weight: 700;
    }

    .case-03-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .case-03-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    .case-03-item:last-child {
        margin-bottom: 0;
    }

    .case-03-bullet {
        color: #4ade80;
        font-weight: 700;
        flex-shrink: 0;
    }

    .case-03-text {
        flex: 1;
        color: #ddd;
    }

    .text-replace-label-03 {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
    }

    @media (max-width: 992px) {
        .key-point-03-section {
            padding: 80px 0;
        }

        .key-point-03-container {
            padding: 0 30px;
        }

        .key-point-03-header-title {
            font-size: 28px;
        }

        .key-point-03-content {
            grid-template-columns: 1fr;
        }

        .key-point-03-left {
            padding: 30px;
        }

        .key-point-03-right {
            padding: 50px 40px;
        }
    }

    @media (max-width: 768px) {
        .key-point-03-section {
            padding: 60px 0;
        }

        .key-point-03-container {
            padding: 0 20px;
        }

        .key-point-03-header-title {
            font-size: 24px;
        }

        .key-point-03-left {
            padding: 25px 20px;
        }

        .key-point-03-right {
            padding: 40px 30px;
        }

        .key-point-03-number {
            font-size: 60px;
        }

        .key-point-03-title {
            font-size: 20px;
        }

        .key-point-03-description {
            font-size: 14px;
        }

        .key-point-03-case-box {
            padding: 25px 20px;
        }

        .case-03-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .case-03-title {
            font-size: 18px;
        }

        .case-03-item {
            font-size: 14px;
        }
    }



    /* Q&A 섹션 스타일 */
    .nostril-qna-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

    .nostril-qna-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 50px;
    }

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

    .nostril-qna-badge {
        display: inline-block;
        background: #9e9e9e;
        color: #fff;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .nostril-qna-list {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .nostril-qna-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nostril-question {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .nostril-question-bubble {
        background: #10b981;
        color: #fff;
        padding: 20px 25px;
        border-radius: 15px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.6;
        max-width: 400px;
    }

    .nostril-question-icon {
        width: 50px;
        height: 50px;
        background: #e0f2fe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 24px;
        overflow: hidden;
    }

    .nostril-question-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nostril-answer {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .nostril-doctor-icon {
        width: 50px;
        height: 50px;
        background: #f5f5f5;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .nostril-doctor-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nostril-answer-content {
        flex: 1;
    }

    .nostril-answer-label {
        font-size: 14px;
        font-weight: 700;
        color: #10b981;
        margin-bottom: 10px;
    }

    .nostril-answer-bubble {
        background: #f5f5f5;
        padding: 20px 25px;
        border-radius: 15px;
        font-size: 15px;
        color: #333;
        line-height: 1.8;
    }

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

        .nostril-qna-container {
            padding: 0 30px;
        }

        .nostril-qna-list {
            gap: 40px;
        }
    }

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

        .nostril-qna-container {
            padding: 0 20px;
        }

        .nostril-qna-badge {
            font-size: 14px;
            padding: 10px 25px;
        }

        .nostril-qna-list {
            gap: 35px;
        }

        .nostril-question {
            flex-direction: column;
            align-items: flex-start;
        }

        .nostril-question-bubble {
            font-size: 15px;
            padding: 18px 22px;
            max-width: 100%;
        }

        .nostril-question-icon {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }

        .nostril-answer {
            flex-direction: column;
        }

        .nostril-doctor-icon {
            width: 45px;
            height: 45px;
        }

        .nostril-answer-bubble {
            font-size: 14px;
            padding: 18px 22px;
        }
    }



    /* 최종 메시지 섹션 스타일 */
    .nostril-final-message-section {
        background: #000;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .nostril-final-message-container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .nostril-final-message-image {
        width: 100%;
        height: 600px;
        position: relative;
        overflow: hidden;
    }

    .nostril-final-message-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .nostril-final-message-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 80px 60px 80px;
    }

    .nostril-final-message-content {
        max-width: 800px;
        text-align: center;
        color: #fff;
    }

    .nostril-final-message-title {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 40px;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .nostril-final-message-description {
        font-size: 18px;
        line-height: 1.9;
        color: #fff;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 992px) {
        .nostril-final-message-image {
            height: 500px;
        }

        .nostril-final-message-overlay {
            padding: 0 50px 50px 50px;
        }

        .nostril-final-message-title {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .nostril-final-message-description {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .nostril-final-message-image {
            height: 450px;
        }

        .nostril-final-message-overlay {
            padding: 0 30px 40px 30px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
        }

        .nostril-final-message-title {
            font-size: 28px;
            margin-bottom: 25px;
        }

        .nostril-final-message-description {
            font-size: 15px;
            line-height: 1.8;
        }
    }



    /* 얼굴 비율 분석 섹션 스타일 */
    .facial-proportion-analysis-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

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

    .facial-proportion-header {
        margin-bottom: 40px;
    }

    .facial-proportion-number {
        font-size: 80px;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin-bottom: 20px;
    }

    .facial-proportion-title {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .facial-proportion-title .highlight {
        color: #ff6b6b;
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }

    .facial-proportion-subtitle {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 10px;
    }

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

    .facial-proportion-image-item {
        position: relative;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

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

    .facial-image-label {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.95);
        padding: 20px 30px;
        border-radius: 8px;
        text-align: left;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .facial-image-label-title {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .facial-image-label-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .facial-image-replace {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 107, 107, 0.9);
        color: #fff;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
    }

    .facial-proportion-notice {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        border-left: 4px solid #ff6b6b;
    }

    .notice-heading {
        font-size: 18px;
        font-weight: 700;
        color: #ff6b6b;
        margin-bottom: 15px;
    }

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

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

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

        .facial-proportion-number {
            font-size: 70px;
        }

        .facial-proportion-title {
            font-size: 24px;
        }

        .facial-proportion-images {
            gap: 25px;
        }
    }

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

        .facial-proportion-analysis-container {
            padding: 0 20px;
        }

        .facial-proportion-number {
            font-size: 60px;
        }

        .facial-proportion-title {
            font-size: 22px;
        }

        .facial-proportion-subtitle {
            font-size: 15px;
        }

        .facial-proportion-images {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .facial-image-label {
            padding: 15px 20px;
        }

        .facial-image-label-title {
            font-size: 16px;
        }

        .facial-image-label-desc {
            font-size: 13px;
        }

        .facial-proportion-notice {
            padding: 25px 20px;
        }

        .notice-heading {
            font-size: 16px;
        }

        .notice-text {
            font-size: 14px;
        }
    }



    /* VIBE 코성형 얼굴 정밀분석 섹션 스타일 */
    .vibe-facial-analysis-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .vibe-analysis-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 2px solid #e0e0e0;
    }

    .vibe-analysis-header-left h2 {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .vibe-analysis-header-left p {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
    }

    .vibe-analysis-header-right {
        text-align: right;
    }

    .vibe-reference-label {
        font-size: 13px;
        color: #2196f3;
        margin-bottom: 5px;
    }

    .vibe-reference-link {
        font-size: 13px;
        color: #2196f3;
        text-decoration: none;
        word-break: break-all;
    }

    .vibe-reference-link:hover {
        text-decoration: underline;
    }

    .vibe-analysis-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .vibe-analysis-item {
        background: #f9f9f9;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

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

    .vibe-analysis-image {
        width: 100%;
        height: 280px;
        overflow: hidden;
        position: relative;
    }

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

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

    .vibe-analysis-category {
        font-size: 12px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .vibe-analysis-name {
        font-size: 16px;
        font-weight: 700;
        color: #222;
        margin-bottom: 12px;
    }

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

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

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

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

        .vibe-analysis-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .vibe-analysis-header-left h2 {
            font-size: 24px;
        }

        .vibe-analysis-header-right {
            text-align: left;
        }

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

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

        .vibe-facial-analysis-container {
            padding: 0 20px;
        }

        .vibe-analysis-header-left h2 {
            font-size: 22px;
        }

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

        .vibe-analysis-image {
            height: 320px;
        }

        .vibe-analysis-content {
            padding: 20px 18px;
        }

        .vibe-analysis-name {
            font-size: 15px;
        }

        .vibe-analysis-desc {
            font-size: 12px;
        }
    }



    /* VIBE 수술 전 정밀진단 섹션 스타일 */
    .vibe-pre-surgery-diagnosis-section {
        background: #f5f5f5;
        padding: 120px 0;
        position: relative;
    }

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

    .vibe-diagnosis-section-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
        margin-bottom: 60px;
    }

    .vibe-diagnosis-main-item {
        background: #fff;
        padding: 60px 50px;
        border-radius: 12px;
        margin-bottom: 40px;
    }

    .vibe-diagnosis-header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 40px;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .vibe-diagnosis-number {
        font-size: 120px;
        font-weight: 800;
        color: #333;
        line-height: 1;
    }

    .vibe-diagnosis-title-group {
        padding-top: 20px;
    }

    .vibe-diagnosis-main-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

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

    .vibe-diagnosis-equipment-image {
        width: 350px;
        position: relative;
    }

    .vibe-diagnosis-equipment-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .vibe-equipment-label {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 59, 48, 0.9);
        color: #fff;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
    }

    .vibe-ct-images-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .vibe-ct-image-placeholder {
        background: #f9f9f9;
        border: 2px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }

    .vibe-ct-image-placeholder img {
        width: 100%;
        height: auto;
        display: block;
    }

    .vibe-diagnosis-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .vibe-diagnosis-feature-item {
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 30px;
        align-items: center;
    }

    .vibe-feature-image {
        width: 100%;
        background: #f9f9f9;
        border-radius: 8px;
        padding: 20px;
    }

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

    .vibe-feature-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .vibe-feature-content p {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
    }

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

        .vibe-pre-surgery-container {
            padding: 0 30px;
        }

        .vibe-diagnosis-section-title {
            font-size: 28px;
            margin-bottom: 50px;
        }

        .vibe-diagnosis-main-item {
            padding: 50px 40px;
        }

        .vibe-diagnosis-header {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .vibe-diagnosis-number {
            font-size: 100px;
        }

        .vibe-diagnosis-equipment-image {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .vibe-diagnosis-features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

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

        .vibe-pre-surgery-container {
            padding: 0 20px;
        }

        .vibe-diagnosis-section-title {
            font-size: 24px;
            margin-bottom: 40px;
        }

        .vibe-diagnosis-main-item {
            padding: 40px 30px;
        }

        .vibe-diagnosis-number {
            font-size: 80px;
        }

        .vibe-diagnosis-title-group {
            padding-top: 10px;
        }

        .vibe-diagnosis-main-title {
            font-size: 20px;
        }

        .vibe-diagnosis-desc {
            font-size: 14px;
        }

        .vibe-ct-images-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .vibe-diagnosis-feature-item {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .vibe-feature-image {
            max-width: 400px;
            margin: 0 auto;
        }

        .vibe-feature-content h3 {
            font-size: 20px;
            text-align: center;
        }

        .vibe-feature-content p {
            font-size: 14px;
            text-align: center;
        }
    }



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

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

    .vibe-recovery-section-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
        margin-bottom: 60px;
    }

    .vibe-recovery-main-item {
        background: #fff;
        padding: 60px 50px;
        border-radius: 12px;
    }

    .vibe-recovery-content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 50px;
        align-items: flex-start;
    }

    .vibe-recovery-number {
        font-size: 120px;
        font-weight: 800;
        color: #333;
        line-height: 1;
    }

    .vibe-recovery-text-group {
        padding-top: 20px;
    }

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

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

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

    .vibe-recovery-image-item {
        position: relative;
        background: #f5f5f5;
        border-radius: 8px;
        overflow: hidden;
    }

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

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

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

        .vibe-recovery-section-title {
            font-size: 28px;
            margin-bottom: 50px;
        }

        .vibe-recovery-main-item {
            padding: 50px 40px;
        }

        .vibe-recovery-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .vibe-recovery-number {
            font-size: 100px;
        }

        .vibe-recovery-images {
            grid-template-columns: repeat(2, 1fr);
        }
    }

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

        .vibe-recovery-container {
            padding: 0 20px;
        }

        .vibe-recovery-section-title {
            font-size: 24px;
            margin-bottom: 40px;
        }

        .vibe-recovery-main-item {
            padding: 40px 30px;
        }

        .vibe-recovery-number {
            font-size: 80px;
        }

        .vibe-recovery-main-title {
            font-size: 20px;
        }

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

        .vibe-recovery-images {
            grid-template-columns: 1fr;
        }
    }



    /* Find Your VIBE 섹션 스타일 */
    .find-your-vibe-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .find-vibe-header {
        background: #2d3748;
        color: #fff;
        padding: 50px 60px;
        margin-bottom: 50px;
        position: relative;
    }

    .find-vibe-title {
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
        letter-spacing: -1px;
        color: #fff;
    }

    .find-vibe-title .vibe-word {
        font-weight: 800;
        color: #fff;
    }

    .find-vibe-subtitle {
        font-size: 20px;
        font-weight: 500;
        color: #fff;
        letter-spacing: -0.5px;
    }

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

    .find-vibe-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .find-vibe-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 992px) {
        .find-your-vibe-section {
            padding: 80px 0;
        }

        .find-vibe-container {
            padding: 0 30px;
        }

        .find-vibe-header {
            padding: 40px 40px;
            margin-bottom: 40px;
        }

        .find-vibe-title {
            font-size: 36px;
        }

        .find-vibe-subtitle {
            font-size: 18px;
        }

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

        .find-vibe-item img {
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .find-your-vibe-section {
            padding: 60px 0;
        }

        .find-vibe-container {
            padding: 0 20px;
        }

        .find-vibe-header {
            padding: 30px 30px;
            margin-bottom: 30px;
        }

        .find-vibe-title {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .find-vibe-subtitle {
            font-size: 16px;
        }

        .find-vibe-gallery {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .find-vibe-item img {
            height: 320px;
        }
    }



/* 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(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.solution-item img {
    width: 100%;
    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 {
        gap: 40px;
        padding: 0 30px;
    }
}

    /* VIBE 약속 섹션 */
    .vibe-promise-section {
        background: #fff;
        padding: 120px 0;
        position: relative;
    }

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

    .vibe-promise-title {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 80px;
    }

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

    .promise-item {
        background: #f9f9f9;
        border-radius: 12px;
        padding: 30px 25px;
        position: relative;
        transition: all 0.3s ease;
    }

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

    .promise-badge {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .promise-item:nth-child(1) .promise-badge {
        background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    }

    .promise-item:nth-child(2) .promise-badge {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }

    .promise-item:nth-child(3) .promise-badge {
        background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    }

    .promise-item:nth-child(4) .promise-badge {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .promise-item-title {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .promise-item-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .promise-image {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
    }

    .promise-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

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

        .vibe-promise-section {
            padding: 80px 0;
        }

        .vibe-promise-container {
            padding: 0 30px;
        }

        .vibe-promise-title {
            font-size: 32px;
            margin-bottom: 60px;
        }

        .promise-grid {
            gap: 20px;
        }
    }

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

        .vibe-promise-container {
            padding: 0 20px;
        }

        .vibe-promise-title {
            font-size: 28px;
            margin-bottom: 50px;
        }

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

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

        .promise-item-title {
            font-size: 18px;
        }

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

        .promise-image img {
            height: 220px;
        }
    }
