/* ========= 힙딥 360 콜라겐 주사 ========= */
.hipdip-section {
    background-color: #B5B5C0;
    min-height: 1036px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 0 0;
}

.hipdip-container {
    width: 100%;
    height: 1036px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hipdip-image {
    position: absolute;
    left: 460px;
    width: 596px;
    height: 100%;
    z-index: 3;
    border: 2px solid #ffffff;
    padding: 50px 0 80px 0;
    box-sizing: border-box;
    overflow: hidden;
}

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

.hipdip-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: auto;
    max-width: none;
}

.hipdip-title {
    text-align: left;
    position: absolute;
    top: 100px;
    left: 325px;
    z-index: 5;
}

.hipdip-main-title {
    font-size: 96px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hip-text {
    font-family: 'Dream Orphans';
    color: #000000;
}

.dip-text {
    font-family: 'Dream Orphans';
    color: #ffffff;
}

.hipdip-sub-title {
    font-size: 96px;
    font-weight: normal;
    line-height: 1.2;
}

.collagen-text {
    font-family: 'Dream Orphans';
    color: #000000;
}

.filler-text {
    font-family: 'Dream Orphans';
    color: #ffffff;
}

.hipdip-info-box {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 0 20px 0 0;
    padding: 40px;
    width: 600px;
    text-align: left;
    position: absolute;
    bottom: 80px;
    left: calc(460px + 596px);
    opacity: 0;
    transform: translateX(-600px);
    z-index: 1;
    animation: slideInFromBehind 1s ease-out 0.5s forwards;
}

@keyframes slideInFromBehind {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hipdip-question {
    font-family: 'Noto Serif KR';
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hipdip-description {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #ffffff;
    word-break: keep-all;
}

/* ==== 두번째 섹션====*/
.bc-center-section {
    position: relative;
    width: 100%;
    padding: 0;
    /* 불필요한 padding 제거 */
    background: #fff;
    overflow: hidden;
    min-height: 860px;
    /* 바깥 잘라내기 */
}

.bc-container {
    position: relative;
    z-index: 2;
    /* 곡선 위로 */
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 400px;
    max-width: 1600px;
}

/* ===== Curved Title & Dotted Line ===== */
.bc-curve {
    position: relative;
    z-index: 1;
    height: 700px;
    /* 현재 SVG viewBox 높이에 맞춤 (필요 시 조정) */
}

.bc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* 가장 뒤 */
}

.bc-curve-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.bc-curve-text {
    fill: #000;
    /* 휘어있는 글씨 색상 */
    font-family: 'Dream Orphans', sans-serif;
    font-weight: 700;
    /* bold */
    font-size: 48px;
    /* 48px */
    letter-spacing: .5px;
    dominant-baseline: text-after-edge;
}

.bc-curve-dashed {
    stroke: #95B9E6;
    /* 연한 파랑 점선 (샘플) */
    stroke-width: 2;
    stroke-dasharray: 6 8;
    opacity: .5;
}

.bc-curve-dashed {
    stroke: #95B9E6;
    stroke-width: 2;
    stroke-dasharray: 6 8;
    opacity: .5;
}

.bc-curve-soft {
    stroke: #95B9E6;
    stroke-width: 2;
    opacity: .35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== Feature Cards ===== */
.bc-feature-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 108px;
    margin: -120px auto 16px;
    /* 곡선 아래로 끌어올리는 효과 */
    padding: 0;
    list-style: none;
    min-width: 200px;
}

.bc-feature {
    background: #F8F8F8;
    /* 도형 색상 */
    border-radius: 120px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03) inset;
    opacity: 0;
    transform: translateY(18px);
}

.bc-feature-list.is-inview .bc-feature {
    animation: bcFadeUp .6s ease forwards;
}

/* 좌→우 순서로 지연 (필요시 간격 조절) */
.bc-feature-list.is-inview .bc-feature:nth-child(1) {
    animation-delay: 0s;
}

.bc-feature-list.is-inview .bc-feature:nth-child(2) {
    animation-delay: .07s;
}

.bc-feature-list.is-inview .bc-feature:nth-child(3) {
    animation-delay: .14s;
}

.bc-feature-list.is-inview .bc-feature:nth-child(4) {
    animation-delay: .21s;
}

.bc-feature-list.is-inview .bc-feature:nth-child(5) {
    animation-delay: .28s;
}

@keyframes bcFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 접근성: 모션 감소 선호 시 애니메이션 제거 */
@media (prefers-reduced-motion: reduce) {
    .bc-feature {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}

.bc-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.bc-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) opacity(0.85);
}

.bc-copy {
    text-align: center;
    line-height: 1.2;
}

/* 아이콘 첫 번째 줄 텍스트: #000, Pretendard bold 20px */
.bc-line1 {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin-bottom: 6px;
}

/* 아이콘 두 번째 줄 텍스트: #3787FF, Pretendard regular 20px */
.bc-line2 {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #3787FF;
}

/* 푸터 문구 */
.bc-footnote {
    margin: 18px 0 0;
    color: #8d8d8d;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    text-align: right;
    opacity: 0.9;
}

/*=== 세번째 색션===*/
.bc-hipdip-section {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
    min-height: 1020px;
}

/* Background image pinned to right side */
.bc-hipdip-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bc-hipdip-bg img {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
    user-select: none;
    width: 100%;
}

/* Content container */
.bc-hipdip-container {
    position: relative;
    z-index: 2;
    /* above background */
    max-width: 1280px;
    margin: 0 auto;
    padding: 260px 24px 140px;
    display: flex;
    justify-content: flex-start;
}

/* Text block = brush title + divider + paragraph (stacked) */
.bc-hipdip-textblock {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 520px;
    text-align: center;
    margin-left: clamp(20px, 8vw, 120px);
}

/* Brush lines */
.hand-lines {
    color: #000;
    line-height: 1.15;
    margin-bottom: 14px;
}

.nbs {
    font-family: 'NanumBrush', cursive;
    display: inline-block;
}

.n20 {
    font-size: 20px;
}

.n32 {
    font-size: 32px;
}

.n36 {
    font-size: 36px;
}

/* Thin paragraph */
.hipdip-copy {
    margin: 0;
    color: #777;
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    /* Thin */
    font-size: 20px;
    line-height: 1.9;
}

/* Vertical divider between brush title and paragraph */
.hand-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: #000;
    opacity: .9;
    margin: 14px auto 18px;
}

/* ===== Animate only the text block (not the whole container) ===== */
.bc-hipdip-textblock {
    opacity: 0;
    transform: translateY(18px);
    will-change: transform, opacity;
}

.bc-hipdip-textblock.is-inview {
    animation: hipTextFadeUp .6s ease-out forwards;
}

@keyframes hipTextFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bc-hipdip-textblock {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .bc-hipdip-bg img {
        height: 82%;
    }

    .bc-hipdip-container {
        padding: 100px 24px 120px;
    }
}

@media (max-width: 768px) {
    .bc-hipdip-section {
        min-height: 680px;
    }

    .bc-hipdip-textblock {
        width: min(520px, 92%);
        margin-left: auto;
        margin-right: auto;
    }

    .hipdip-copy {
        font-size: 18px;
        line-height: 1.8;
    }

    .n36 {
        font-size: 32px;
    }

    .n32 {
        font-size: 28px;
    }

    .n20 {
        font-size: 18px;
    }

    .bc-hipdip-bg img {
        height: 70%;
        right: -6%;
    }
}


/*=== 위 슬라이드 페이지 ===*/
.four-slider-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent;
    min-height: 860px;
}

.four-slider-text {
    text-align: center;
    margin-bottom: 200px;
}

.four-slider-title,
.four-slider-subtitle {
    font-family: 'Noto Serif KR', serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.4;
    margin: 0;
    color: #333;
}

.four-slider-title {
    margin-bottom: 8px;
}

.four-slider-container {
    width: 70vw;
    height: 15vw;
    position: relative;
    perspective: 1000px;
}

.four-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.four-card {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center bottom;
    background: transparent;
}

.four-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.four-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 1;
    /* 이미지 모양에 맞춰서 마스크 적용 */
    mask: url('/home_assets/img/main/body_center/slider_img1.png') no-repeat center / contain;
    -webkit-mask: url('/home_assets/img/main/body_center/slider_img1.png') no-repeat center / contain;
}

/* 각 카드별로 다른 마스크 이미지 적용 */
.four-card:nth-child(1) .four-card-overlay {
    mask: url('/home_assets/img/main/body_center/slider_img1.png') no-repeat center / contain;
    -webkit-mask: url('/home_assets/img/main/body_center/slider_img1.png') no-repeat center / contain;
}

.four-card:nth-child(2) .four-card-overlay {
    mask: url('/home_assets/img/main/body_center/slider_img2.png') no-repeat center / contain;
    -webkit-mask: url('/home_assets/img/main/body_center/slider_img2.png') no-repeat center / contain;
}

.four-card:nth-child(3) .four-card-overlay {
    mask: url('/home_assets/img/main/body_center/slider_img3.png') no-repeat center / contain;
    -webkit-mask: url('/home_assets/img/main/body_center/slider_img3.png') no-repeat center / contain;
}

.four-card:nth-child(4) .four-card-overlay {
    mask: url('/home_assets/img/main/body_center/slider_img4.png') no-repeat center / contain;
    -webkit-mask: url('/home_assets/img/main/body_center/slider_img4.png') no-repeat center / contain;
}

/* 기존 ::before, ::after 제거 */
.four-card::before,
.four-card::after {
    display: none;
}

/* 카드 콘텐츠 관련 스타일 제거 */

/* 초기 상태 - 1번 카드만 보임 */
.four-card {
    transform: translateY(0) scale(1);
    z-index: 1;
    opacity: 1;
}

.four-card:nth-child(2) {
    transform: translateY(0) scale(1);
    z-index: 2;
    opacity: 0;
}

.four-card:nth-child(3) {
    transform: translateY(0) scale(1);
    z-index: 3;
    opacity: 0;
}

.four-card:nth-child(4) {
    transform: translateY(0) scale(1);
    z-index: 4;
    opacity: 0;
}

/* 상태별 카드 위치 - 더 밝은 오버레이 적용 */
.four-slider-container[data-state="1"] .four-card:nth-child(1) {
    transform: translateY(-70px) scale(0.95);
    z-index: 1;
    opacity: 1;
}

.four-slider-container[data-state="1"] .four-card:nth-child(1) .four-card-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.four-slider-container[data-state="1"] .four-card:nth-child(2) {
    transform: translateY(0) scale(1);
    z-index: 2;
    opacity: 1;
}

.four-slider-container[data-state="1"] .four-card:nth-child(2) .four-card-overlay {
    background: rgba(0, 0, 0, 0);
}

.four-slider-container[data-state="1"] .four-card:nth-child(3) {
    transform: translateY(0) scale(1);
    z-index: 3;
    opacity: 0;
}

.four-slider-container[data-state="1"] .four-card:nth-child(4) {
    transform: translateY(0) scale(1);
    z-index: 4;
    opacity: 0;
}

.four-slider-container[data-state="2"] .four-card:nth-child(1) {
    transform: translateY(-140px) scale(0.90);
    z-index: 1;
    opacity: 1;
}

.four-slider-container[data-state="2"] .four-card:nth-child(1) .four-card-overlay {
    background: rgba(0, 0, 0, 0.20);
}

.four-slider-container[data-state="2"] .four-card:nth-child(2) {
    transform: translateY(-70px) scale(0.95);
    z-index: 2;
    opacity: 1;
}

.four-slider-container[data-state="2"] .four-card:nth-child(2) .four-card-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.four-slider-container[data-state="2"] .four-card:nth-child(3) {
    transform: translateY(0) scale(1);
    z-index: 3;
    opacity: 1;
}

.four-slider-container[data-state="2"] .four-card:nth-child(3) .four-card-overlay {
    background: rgba(0, 0, 0, 0);
}

.four-slider-container[data-state="2"] .four-card:nth-child(4) {
    transform: translateY(0) scale(1);
    z-index: 4;
    opacity: 0;
}

.four-slider-container[data-state="3"] .four-card:nth-child(1) {
    transform: translateY(-210px) scale(0.85);
    z-index: 1;
    opacity: 1;
}

.four-slider-container[data-state="3"] .four-card:nth-child(1) .four-card-overlay {
    background: rgba(0, 0, 0, 0.30);
}

.four-slider-container[data-state="3"] .four-card:nth-child(2) {
    transform: translateY(-140px) scale(0.90);
    z-index: 2;
    opacity: 1;
}

.four-slider-container[data-state="3"] .four-card:nth-child(2) .four-card-overlay {
    background: rgba(0, 0, 0, 0.20);
}

.four-slider-container[data-state="3"] .four-card:nth-child(3) {
    transform: translateY(-70px) scale(0.95);
    z-index: 3;
    opacity: 1;
}

.four-slider-container[data-state="3"] .four-card:nth-child(3) .four-card-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.four-slider-container[data-state="3"] .four-card:nth-child(4) {
    transform: translateY(0) scale(1);
    z-index: 4;
    opacity: 1;
}

.four-slider-container[data-state="3"] .four-card:nth-child(4) .four-card-overlay {
    background: rgba(0, 0, 0, 0);
}

/* 인디케이터 */
.four-indicators {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.four-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(202, 216, 237, 0.3);
    border: 2px solid #CAD8ED;
    cursor: pointer;
    transition: all 0.3s ease;
}

.four-indicator.active {
    background: #CAD8ED;
    transform: scale(1.3);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .four-slider-container {
        width: 85vw;
        height: 20vw;
    }

    .four-slider-section {
        min-height: 600px;
    }

    .four-slider-title,
    .four-slider-subtitle {
        font-size: 24px;
    }

    .four-slider-text {
        margin-bottom: 40px;
    }
}

/*=== hip sketch ===*/
.hip-sketch-section {
    background: #f8f9fa;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hip-sketch-container {
    max-width: 70vw;
    width: 100%;
    text-align: center;
}

/* 텍스트 스타일 */
.hip-sketch-main-title {
    font-family: 'Dream Orphans', serif;
    font-weight: 400;
    font-size: 48px;
    color: #2c5aa0;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hip-sketch-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.hip-sketch-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #333;
    margin: 0 0 60px 0;
    line-height: 1.3;
}

/* 그리드 레이아웃 */
.hip-sketch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.hip-sketch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* 애니메이션 상태 */
.hip-sketch-section.is-inview .hip-sketch-item {
    opacity: 1;
    transform: translateY(0);
}

/* 순차적 애니메이션 딜레이 */
.hip-sketch-section.is-inview .hip-sketch-item:nth-child(1) {
    transition-delay: 0.1s;
}

.hip-sketch-section.is-inview .hip-sketch-item:nth-child(2) {
    transition-delay: 0.2s;
}

.hip-sketch-section.is-inview .hip-sketch-item:nth-child(3) {
    transition-delay: 0.3s;
}

.hip-sketch-section.is-inview .hip-sketch-item:nth-child(4) {
    transition-delay: 0.4s;
}

.hip-sketch-image-container {
    width: 100%;
    max-width: 20vw;
    aspect-ratio: 1;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hip-sketch-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
}

.hip-sketch-label {
    background: #2c5aa0;
    color: white;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 25px;
    white-space: nowrap;
    margin-top: -2.5vw;
    z-index: 1;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .hip-sketch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hip-sketch-main-title {
        font-size: 40px;
    }

    .hip-sketch-subtitle {
        font-size: 20px;
    }

    .hip-sketch-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hip-sketch-section {
        padding: 60px 20px;
    }

    .hip-sketch-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 300px;
        margin: 40px auto 0;
    }

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

    .hip-sketch-subtitle {
        font-size: 18px;
    }

    .hip-sketch-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .hip-sketch-label {
        font-size: 18px;
        padding: 10px 20px;
    }

    .hip-sketch-image-container {
        max-width: 250px;
        padding: 15px;
    }
}

/*=== 힙 스케치===*/
.hip-design-section {
    background: white;
    padding: 100px 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 배경 버블들 */
.hip-design-bubble-top {
    position: absolute;
    top: 10%;
    right: 57%;
    width: 244px;
    height: 244px;
    border-radius: 122px;
    transform: rotate(45deg);
    filter: blur(10px);
    background: linear-gradient(180deg, rgba(131, 172, 232, 0.4) 6%, rgba(255, 255, 255, 0) 91%);
    z-index: 1;
}

.hip-design-bubble-bottom {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 604px;
    height: 604px;
    border-radius: 302px;
    transform: rotate(-105deg);
    filter: blur(10px);
    background: linear-gradient(180deg, rgba(131, 172, 232, 0.3) 6%, rgba(255, 255, 255, 0) 91%);
    z-index: 1;
}

.hip-design-container {
    max-width: 70vw;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* 텍스트 스타일 */
.hip-design-header {
    position: absolute;
    top: -2vw;
    left: 6vw;
    background: white;
    border: 2px dotted #ccc;
    border-radius: 50px;
    padding: 10px 5vw;
    z-index: 3;
}

.hip-design-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #666;
    line-height: 1.4;
}

.hip-design-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* 메인 콘텐츠 */
.hip-design-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hip-design-shape {
    position: relative;
    width: 100%;
    max-width: 90vw;
    height: 25vw;
    background: #F8F8F8;
    border-radius: 50px;
    border: 2px dotted #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* 라벨 컨테이너 */
.hip-design-label-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* 라벨 공통 스타일 */
.hip-design-label {
    position: absolute;
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #333;
    white-space: nowrap;
    z-index: 3;
}

/* 개별 라벨 위치 */
.hip-design-label-lifting {
    top: 20%;
    left: 15%;
}

.hip-design-label-volume {
    top: 20%;
    left: 35%;
}

.hip-design-label-cellulite {
    top: 20%;
    right: 36%;
}

.hip-design-label-diptype {
    top: 20%;
    right: 14%;
}

/* 이미지 컨테이너 */
.hip-design-image-container {
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: 5vw;
}

.hip-design-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* 애니메이션 제거 - 기본 상태로 표시 */

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .hip-design-container {
        max-width: 85vw;
    }

    .hip-design-shape {
        height: 400px;
    }

    .hip-design-label {
        font-size: 20px;
    }

    .hip-design-subtitle {
        font-size: 20px;
    }

    .hip-design-title {
        font-size: 28px;
    }

    .hip-design-header {
        top: -3vw;
        left: 10vw;
        padding: 8px 60px;
        border-radius: 40px;
    }
}

@media (max-width: 768px) {
    .hip-design-section {
        padding: 60px 20px;
    }

    .hip-design-container {
        max-width: 95vw;
    }

    .hip-design-shape {
        height: 300px;
        border-radius: 30px;
    }

    .hip-design-label {
        font-size: 16px;
    }

    .hip-design-subtitle {
        font-size: 18px;
    }

    .hip-design-title {
        font-size: 24px;
    }

    .hip-design-header {
        top: -4vw;
        left: 5vw;
        padding: 8px 40px;
        border-radius: 30px;
    }

    /* 모바일에서 라벨 위치 조정 */
    .hip-design-label-lifting {
        top: 15%;
        left: 5%;
    }

    .hip-design-label-volume {
        top: 15%;
        left: 25%;
    }

    .hip-design-label-cellulite {
        top: 15%;
        right: 25%;
    }

    .hip-design-label-diptype {
        top: 15%;
        right: 5%;
    }

    /* 버블 크기 조정 */
    .hip-design-bubble-top {
        width: 150px;
        height: 150px;
        border-radius: 75px;
    }

    .hip-design-bubble-bottom {
        width: 300px;
        height: 300px;
        border-radius: 150px;
    }
}

/*=== 힙 타입 ===*/
.hip-type-section {
    padding: 0 20px 100px 20px;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
}

.hip-type-bubble-bottom {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 150px;
    height: 150px;
    border-radius: 70px;
    transform: rotate(105deg);
    filter: blur(10px);
    background: linear-gradient(180deg, rgba(131, 172, 232, 0.3) 6%, rgba(255, 255, 255, 0) 91%);
    z-index: 1;
}

/* 이미지 - 왼쪽 영역 내부 절대 위치 */
.hip-type-fixed-image {
    position: absolute;
    bottom: -210px;
    left: -100px;
    height: auto;
    z-index: 4;
}

.hip-type-text-area {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hip-type-text-area::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 245px;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    transform: rotate(30deg);
    filter: blur(8px);
    background: linear-gradient(180deg, rgba(131, 172, 232, 0.3) 6%, rgba(255, 255, 255, 0) 91%);
    z-index: 1;
}

.hip-type-text-area::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 120px;
    transform: rotate(70deg);
    filter: blur(6px);
    background: linear-gradient(180deg, rgba(131, 172, 232, 0.25) 6%, rgba(255, 255, 255, 0) 91%);
    z-index: 1;
}

.hip-type-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hip-type-container {
    max-width: 1600px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* 메인 콘텐츠 */
.hip-type-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    min-height: 400px;
}

/* 왼쪽: 타입 설명 (40%) */
.hip-type-left {
    flex: 0 0 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 50px;
    padding-left: 300px;
    text-align: left;
    position: relative;
}

.hip-type-main-title {
    font-family: 'Dream Orphans', serif;
    font-weight: 400;
    font-size: 48px;
    color: #333;
    margin: 0 0 30px 0;
    line-height: 1.2;
    text-align: left;
}

.hip-type-list {
    width: 100%;
}

.hip-type-item {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 8px 0;
    text-align: left;
}

/* Type 리스트 - 2번째부터 점점 늘어나는 왼쪽 간격 */
.hip-type-item:nth-child(2) {
    margin-left: 35px;
}

.hip-type-item:nth-child(3) {
    margin-left: 65px;
}

.hip-type-item:nth-child(4) {
    margin-left: 95px;
}

.hip-type-item:nth-child(5) {
    margin-left: 110px;
}

.hip-type-item:nth-child(6) {
    margin-left: 120px;
}

/* 오른쪽: 개인별 맞춤 설명 (60%) */
.hip-type-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hip-type-section.is-inview .hip-type-right {
    opacity: 1;
    transform: translateY(0);
}

.hip-type-header {
    margin-bottom: 50px;
}

.hip-type-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 5px 0;
}

.hip-type-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.hip-type-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.hip-type-description p {
    margin: 0 0 30px 0;
}

.hip-type-description p:last-child {
    margin-bottom: 0;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .hip-type-container {
        max-width: 85vw;
    }

    .hip-type-content {
        flex-direction: column;
        gap: 50px;
        align-items: center;
        text-align: center;
    }

    .hip-type-left {
        align-items: center;
        text-align: center;
        padding-right: 0;
    }

    .hip-type-right {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .hip-type-fixed-image {
        position: relative;
        bottom: auto;
        left: auto;
        width: 250px;
        margin-bottom: 30px;
        order: -1;
    }

    .hip-type-main-title {
        font-size: 40px;
        text-align: center;
    }

    .hip-type-subtitle {
        font-size: 20px;
    }

    .hip-type-title {
        font-size: 28px;
    }

    .hip-type-item {
        font-size: 14px;
        text-align: center;
    }

    .hip-type-description {
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hip-type-section {
        padding: 60px 20px;
    }

    .hip-type-container {
        max-width: 95vw;
    }

    .hip-type-content {
        gap: 40px;
    }

    .hip-type-fixed-image {
        width: 200px;
        margin-bottom: 20px;
    }

    .hip-type-main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hip-type-subtitle {
        font-size: 18px;
    }

    .hip-type-title {
        font-size: 24px;
    }

    .hip-type-header {
        padding: 12px 30px;
        border-radius: 30px;
        margin-bottom: 30px;
    }

    .hip-type-item {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .hip-type-description {
        font-size: 16px;
    }

    .hip-type-bubble-bottom {
        width: 300px;
        height: 300px;
        border-radius: 150px;
    }
}


/*=== 황금비율 섹션 ===*/
.golden-ratio-section {
    background: #F2F2F4;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.golden-ratio-container {
    max-width: 100vw;
    width: 100%;
    text-align: center;
    position: relative;
}

/* 상단 메인 제목 */
.golden-ratio-main-title {
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 32px;
    color: #333;
    margin: 0 0 calc(60px * 100vw / 1600) 0;
    line-height: 1.3;
}

/* 메인 도형 */
.golden-ratio-shape {
    position: relative;
    width: calc(63vw);
    max-width: calc(980px * 100vw / 1600);
    height: calc(28vw);
    max-height: calc(490px * 100vw / 1600);
    margin: 0 auto;
    border-radius: calc(50px * 100vw / 1600);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: calc(40px * 100vw / 1600);
}

/* 배경 이미지 */
.golden-ratio-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.golden-ratio-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 상단 서브 제목 */
.golden-ratio-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 32px;
    color: white;
    margin-bottom: calc(30px * 100vw / 1600);
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: 50px;
}

/* 아이콘 영역 */
.golden-ratio-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    position: relative;
    margin: calc(20px * 100vw / 1600) 0;
    padding: 0 calc(2vw);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 애니메이션 적용 */
.golden-ratio-icon-item.animate {
    animation: slideInUp 0.8s ease-out forwards;
}

/* 순차적 딜레이 */
.golden-ratio-icon-item:nth-child(1).animate {
    animation-delay: 0.2s;
}

.golden-ratio-icon-item:nth-child(2).animate {
    animation-delay: 0.4s;
}

.golden-ratio-icon-item:nth-child(3).animate {
    animation-delay: 0.6s;
}

.golden-ratio-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.golden-ratio-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.golden-ratio-circle-inner {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: absolute;
    top: 7px;
    left: 7px;
}

/* 아이콘 */
.golden-ratio-icon {
    width: calc((21vw / 3) / 2);
    height: calc((21vw / 3) / 2);
    object-fit: contain;
}

/* 곡선 텍스트 */
.golden-ratio-curved-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    pointer-events: none;
}


.curved-text-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.curved-text-svg text {
    font-family: 'Noto Serif KR', serif;
    font-weight: 600;
    font-size: 10px;
    fill: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 하단 설명 */
.golden-ratio-description {
    margin-bottom: 50px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    margin-top: calc(20px * 100vw / 1600);
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .golden-ratio-shape {
        width: 95vw;
        height: 50vw;
        padding: calc(30px * 100vw / 1600);
    }

    .golden-ratio-icons {
        gap: calc(50px * 100vw / 1600);
    }

    .golden-ratio-circle {
        width: calc(100px * 100vw / 1600);
        height: calc(100px * 100vw / 1600);
    }

    .golden-ratio-circle-inner {
        width: calc(90px * 100vw / 1600);
        height: calc(90px * 100vw / 1600);
        border-width: calc(3px * 100vw / 1600);
    }

    .golden-ratio-icon {
        width: calc(40px * 100vw / 1600);
        height: calc(40px * 100vw / 1600);
    }
}

@media (max-width: 768px) {
    .golden-ratio-section {
        padding: 60px 20px;
    }

    .golden-ratio-shape {
        height: 60vw;
        padding: calc(20px * 100vw / 1600);
    }

    .golden-ratio-icons {
        flex-direction: column;
        gap: calc(30px * 100vw / 1600);
    }

    .golden-ratio-circle {
        width: calc(80px * 100vw / 1600);
        height: calc(80px * 100vw / 1600);
    }

    .golden-ratio-circle-inner {
        width: calc(70px * 100vw / 1600);
        height: calc(70px * 100vw / 1600);
    }

    .golden-ratio-icon {
        width: calc(30px * 100vw / 1600);
        height: calc(30px * 100vw / 1600);
    }
}

/*=== 힙 시너지 ===*/
.hip-synergy-section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hip-synergy-container {
    max-width: 1600px;
    width: 100%;
    position: relative;
}

/* 상단 제목들 */
.hip-synergy-title {
    font-family: 'Dream Orphans', serif;
    font-weight: 400;
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.hip-synergy-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: left;
}

.hip-synergy-main-title {
    font-family: 'MaruBuri', serif;
    font-weight: 400;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

/* 이미지 컨테이너 */
.hip-synergy-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 210px;
    position: relative;
}

.hip-synergy-image-item {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

/* 애니메이션 */
.hip-synergy-image-item.animate {
    animation: hipFadeInUp 0.8s ease-out forwards;
}

.hip-synergy-image-item:nth-child(1).animate {
    animation-delay: 0.2s;
}

.hip-synergy-image-item:nth-child(2).animate {
    animation-delay: 0.4s;
}

.hip-synergy-image-item:nth-child(3).animate {
    animation-delay: 0.6s;
}

@keyframes hipFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 배경 도형 */
.hip-synergy-background-shape {
    position: absolute;
    background: #FBFAFA;
    border: 1px dashed #ADADAD;
    border-radius: 20px;
    z-index: 1;
}

/* 첫 번째 이미지 - 가장 낮음 */
.hip-synergy-image-item:nth-child(1) {
    margin-bottom: 0px;
}

.hip-synergy-image-item:nth-child(1) .hip-synergy-background-shape {
    width: 420px;
    height: 520px;
    top: -30px;
    left: -30px;
}

/* 두 번째 이미지 - 중간 높이 */
.hip-synergy-image-item:nth-child(2) {
    margin-bottom: 80px;
}

.hip-synergy-image-item:nth-child(2) .hip-synergy-background-shape {
    width: 420px;
    height: 520px;
    top: -30px;
    left: -30px;
}

/* 세 번째 이미지 - 가장 높음 */
.hip-synergy-image-item:nth-child(3) {
    margin-bottom: 150px;
}

.hip-synergy-image-item:nth-child(3) .hip-synergy-background-shape {
    width: 420px;
    height: 520px;
    top: -30px;
    left: -30px;
}

/* 이미지 */
.hip-synergy-image {
    width: 360px;
    height: 460px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

/* After 라벨 */
.hip-synergy-after-label {
    position: absolute;
    bottom: -8px;
    left: 30px;
    background: transparent;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #333;
    z-index: 4;
}

/* 하단 라벨 */
.hip-synergy-bottom-label {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 10px;
    border: 1px dashed #ADADAD;
    border-radius: 8px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #333;
    z-index: 3;
    white-space: nowrap;
    width: 280px;
    text-align: center;
}

/* 반응형 */
@media (max-width: 1024px) {
    .hip-synergy-images {
        gap: 40px;
    }

    .hip-synergy-image {
        width: 280px;
        height: 360px;
    }

    .hip-synergy-image-item:nth-child(1) .hip-synergy-background-shape,
    .hip-synergy-image-item:nth-child(2) .hip-synergy-background-shape,
    .hip-synergy-image-item:nth-child(3) .hip-synergy-background-shape {
        width: 340px;
        height: 420px;
    }

    .hip-synergy-bottom-label {
        width: 220px;
    }

    .hip-synergy-title {
        font-size: 36px;
    }

    .hip-synergy-main-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hip-synergy-images {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }

    .hip-synergy-image-item:nth-child(1),
    .hip-synergy-image-item:nth-child(2),
    .hip-synergy-image-item:nth-child(3) {
        margin-bottom: 0;
    }

    .hip-synergy-title {
        font-size: 28px;
        text-align: center;
    }

    .hip-synergy-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .hip-synergy-main-title {
        font-size: 24px;
        text-align: center;
    }
}

/*=== 힙딥 콜라겐 주사 ===*/
.hip-olidia-section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hip-olidia-container {
    max-width: 1600px;
    width: 100%;
    text-align: center;
    position: relative;
}

/* 배경 로고 */
.hip-olidia-background-logo {
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 1;
    width: 100%;
}

/* 메인 콘텐츠 */
.hip-olidia-content {
    position: relative;
    z-index: 2;
}

/* 제품 이미지 */
.hip-olidia-product {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 60px;
}

/* 텍스트 영역 */
.hip-olidia-text {
    text-align: center;
}

.hip-olidia-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.hip-olidia-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 반응형 */
@media (max-width: 1024px) {
    .hip-olidia-background-logo {
        max-width: 500px;
    }

    .hip-olidia-product {
        max-width: 350px;
    }

    .hip-olidia-title {
        font-size: 22px;
    }

    .hip-olidia-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hip-olidia-section {
        padding: 60px 20px;
    }

    .hip-olidia-background-logo {
        max-width: 400px;
    }

    .hip-olidia-product {
        max-width: 280px;
        margin-bottom: 40px;
    }

    .hip-olidia-title {
        font-size: 20px;
    }

    .hip-olidia-description {
        font-size: 16px;
    }
}

/*=== FAQ 영역===*/
.hip-faq-section {
    width: 100vw;
    min-height: 175vh;
    background-image: url('/home_assets/img/main/body_center/faq_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 40px;
}

.hip-faq-container {
    width: 100%;
    height: 100%;
    min-height: 1400px;
    display: flex;
    justify-content: center;
}

.hip-faq-content {
    width: 75%;
    height: 100%;
    min-height: 1400px;
    background-image: url('/home_assets/img/main/body_center/front_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 60px 40px;
    margin-top: 200px;
}

.hip-faq-top {
    margin-bottom: 60px;
}

.hip-faq-item {
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hip-faq-question {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    flex: 1;
}

.hip-faq-answer {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px 0 50px 50px;
    padding: 25px 30px;
}

.hip-cautions-title {
    text-align: center;
    margin: 80px 0 60px;
    font-family: 'Dream Orphans', Arial, sans-serif;
    font-weight: normal;
    font-size: 48px;
    color: #fff;
    line-height: 1.2;
}

.hip-cautions-title span {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    opacity: 0.8;
    display: block;
    margin-top: 10px;
}

.hip-faq-bottom {
    margin-top: 40px;
}

.hip-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hip-faq-acc-item {
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid #ffffff;
}

.hip-faq-acc-header {
    padding: 65px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.hip-faq-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #fff;
}

.hip-faq-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0 30px 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
}

.hip-faq-acc-content-inner {
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px 0 50px 50px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.hip-faq-acc-content-inner-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    margin: auto;
}

.hip-faq-acc-content-inner-content {
    font-family: 'Pretendard', sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    margin: auto;
}

.hip-faq-acc-item.active .hip-faq-acc-content {
    max-height: 280px;
}

@media (max-width: 768px) {
    .hip-faq-content {
        padding: 40px 20px;
        margin: 0 20px;
    }

    .hip-faq-question,
    .hip-faq-answer,
    .hip-faq-acc-content {
        font-size: 20px;
    }

    .hip-faq-acc-header {
        font-size: 24px;
        padding: 20px 25px;
    }

    .hip-faq-cautions-title {
        font-size: 36px;
        margin: 60px 0 40px;
    }
}