/* ################################### header ################################### */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9999;
    background-color: transparent;
    transition: background-color 0.4s ease;
}

header.scrolled {
    background-color: #1a4a42;
}

.header_inner {
    max-width: var(--max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* -------------------- 왼쪽: 단지명 -------------------- */
#logo {
    flex-shrink: 0;
    z-index: 1;
}

#logo a {
    font-size: clamp(15px, 1.3vw, 28px);
    font-weight: 500;
    color: var(--base-color-white);
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color 0.4s ease;
}

header.scrolled #logo a {
    color: var(--base-color-white);
}

/* -------------------- 중앙: PRUGIO 로고 -------------------- */
.header_center_logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.header_center_logo a {
    display: flex;
    align-items: center;
}

.header_center_logo img {
    width: clamp(120px, 10vw, 200px);
    height: auto;
    transition: filter 0.4s ease;
}

header.scrolled .header_center_logo img {
    filter: brightness(0) invert(1);
}

/* -------------------- 오른쪽: 전화번호 -------------------- */
.header_right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.header_phone_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 0.6vw, 12px) clamp(20px, 2vw, 35px);
    border: 1px solid var(--base-color-white);
    border-radius: 50px;
    color: var(--base-color-white) !important;
    font-size: clamp(14px, 0.9vw, 18px);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.08em;
    transition: all 0.4s ease;
}

.header_phone_btn:hover {
    background-color: var(--signature-color);
    border-color: var(--signature-color);
}

header.scrolled .header_phone_btn {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--base-color-white) !important;
}

header.scrolled .header_phone_btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}


/* ################################### header 반응형 ################################### */

@media all and (max-width: 768px) {

    .header_inner {
        padding: 0 var(--padding-mo);
    }

    #logo a {
        font-size: 16px;
    }

    .header_phone_btn {
        padding: 7px 20px;
        font-size: 15px;
    }
}

@media all and (max-width: 600px) {

    .header_center_logo {
        display: none;
    }
}


/* ################################### section_1 ################################### */

/* ################################### section_1 ################################### */

.section_1 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.section_1_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section_1_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.section_1_bg.active {
    opacity: 1;
}

.section_1_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.section_1_text {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    z-index: 1;
}

.section_1_sub {
    font-size: var(--text-font-title-size);
    line-height: var(--text-font-size-line);
    color: var(--base-color-white);
    font-weight: 200;
    letter-spacing: 0.05em;
    margin-bottom: clamp(10px, 0.8vw, 15px);
    border: 1px solid var(--base-color-white);
    background-color: #00000069;
    padding: 12px 15px;
}

.section_1_title {
    color: var(--base-color-white);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.title_1 {
    font-size: var(--main-title-font-size);
    line-height: var(--main-title-font-size-line);
    font-weight: 300;
    color: var(--base-color-black);
}

.title_2 {
    font-size: clamp(24px, 2.8vw, 56px);
    font-weight: 700;
    color: var(--signature-color);
}

.section_1_notice {
    margin-top: clamp(15px, 1.2vw, 25px);
    font-size: var(--title-point-font-size);
    line-height: 1.5;
    color: var(--base-color-white);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.section_1_notice .blink {
    font-size: var(--sub-title-font-size);
    font-weight: 700;
    color: #da0000;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.rolling_notice {
    margin-top: clamp(25px, 2vw, 40px);
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: clamp(10px, 0.8vw, 15px) clamp(20px, 1.5vw, 30px);
}

.rolling_notice_mask {
    height: 84px;
    overflow: hidden;
}

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

.rolling_item {
    height: 28px;
    line-height: 28px;
    font-size: clamp(13px, 0.75vw, 15px);
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.5);
}

.rolling_item:nth-child(2) {
    color: rgba(255, 255, 255, 1);
}

/* section_1 반응형 */
@media all and (max-width: 600px) {
    .section_1_text {
        top: 100px;
        width: 90%;
    }

    .section_1_title {
        white-space: normal;
    }
}


/* ################################### section_2 ################################### */

.section_2 {
    background-color: #111;
    padding: clamp(60px, 6vw, 130px) 0;
}

.section_2_inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-pc);
}

.section_2_head {
    text-align: center;
    margin-bottom: clamp(40px, 4vw, 80px);
}

.section_2_title {
    font-size: var(--main-title-font-size);
    line-height: var(--main-title-font-size-line);
    font-weight: 600;
    color: var(--base-color-white);
    letter-spacing: 0.08em;
    margin-bottom: clamp(10px, 1vw, 20px);
}

.section_2_sub {
    font-size: var(--text-font-size);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.section_2_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(15px, 1.2vw, 24px);
}

.premium_card {
    display: flex;
    background-color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.premium_card:hover {
    transform: translateY(-5px);
}

.premium_card_img {
    flex-shrink: 0;
    width: 45%;
    position: relative;
}

.img_cut_label {
    position: absolute;
    right: 6px;
    bottom: 6px;
    font-size: clamp(13px, 1.2vw, 14px);
    color: rgba(255,255,255,0.85);
    line-height: 1;
}

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

.premium_card_info {
    padding: clamp(20px, 1.8vw, 35px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium_num {
    font-size: clamp(13px, 0.8vw, 16px);
    font-weight: 600;
    color: var(--base-color-white);
    letter-spacing: 0.1em;
    margin-bottom: clamp(8px, 0.6vw, 14px);
}

.premium_card_title {
    font-size: clamp(18px, 1.1vw, 24px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: clamp(10px, 1vw, 20px);
}

.premium_card_title strong {
    font-weight: 700;
    color: var(--base-color-white);
    font-size: inherit;
}

.premium_card_desc {
    font-size: clamp(14px, 0.8vw, 16px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}

/* section_2 반응형 */
@media all and (max-width: 1024px) {
    .section_2_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width: 600px) {
    .section_2_inner {
        padding: 0 var(--padding-mo);
    }

    .section_2_grid {
        grid-template-columns: 1fr;
    }

    .premium_card {
        border-radius: 12px;
    }

    .premium_card_img {
        width: 40%;
    }
}


/* ################################### section_3 ################################### */

.section_3 {
    background-color: #f5f5f5;
    padding: clamp(60px, 6vw, 130px) 0;
}

.section_3_inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-pc);
}

.section_3_head {
    text-align: center;
    margin-bottom: clamp(25px, 2.5vw, 50px);
}

.section_3_title {
    font-size: var(--main-title-font-size);
    line-height: var(--main-title-font-size-line);
    font-weight: 600;
    color: var(--base-color-black);
    letter-spacing: 0.05em;
    margin-bottom: clamp(10px, 1vw, 20px);
}

.section_3_sub {
    font-size: var(--text-font-size);
    line-height: 1.8;
    color: #888;
    font-weight: 300;
}

.section_3_tabs {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 0.8vw, 15px);
    margin-bottom: clamp(30px, 3vw, 60px);
}

.section_3_tab {
    padding: clamp(12px, 0.8vw, 16px) clamp(30px, 2.5vw, 50px);
    font-size: clamp(14px, 0.85vw, 17px);
    font-weight: 500;
    color: #999;
    background: var(--base-color-white);
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.section_3_tab:hover {
    color: #555;
    border-color: #bbb;
}

.section_3_tab.active {
    background-color: var(--signature-color);
    color: var(--base-color-white);
    border-color: var(--signature-color);
}

.section_3_contents {
    position: relative;
}

.section_3_panel {
    display: none;
    animation: fadeInPanel 0.5s ease;
}

.section_3_panel.active {
    display: block;
}

.section_3_panel img {
    width: 50%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

@keyframes fadeInPanel {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* section_3 반응형 */
@media all and (max-width: 860px) {
    .section_3_panel img {
        width: 100%;
    }
}

@media all and (max-width: 600px) {
    .section_3_inner {
        padding: 0 var(--padding-mo);
    }

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

    .section_3_panel img {
        width: 100%;
        border-radius: 8px;
    }
}


/* ################################### section_4 ################################### */

.section_4 {
    display: flex;
    min-height: clamp(500px, 45vw, 750px);
}

.section_4_left {
    width: 40%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_4_left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.section_4_left_inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(30px, 3vw, 60px) clamp(25px, 3vw, 60px);
}

.section_4_title {
    font-size: clamp(22px, 2vw, 36px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    padding-bottom: clamp(15px, 1.5vw, 25px);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    margin-bottom: clamp(20px, 2vw, 35px);
}

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

.section_4_tab {
    display: flex;
    align-items: center;
    gap: clamp(15px, 1.5vw, 25px);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: clamp(15px, 1.5vw, 25px) 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section_4_tab_thumb {
    width: clamp(60px, 5vw, 90px);
    height: clamp(60px, 5vw, 90px);
    border-radius: 50%;
    background: #eeeded;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.section_4_tab_thumb img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.section_4_tab_name {
    font-size: clamp(18px, 1.5vw, 26px);
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.section_4_tab:hover .section_4_tab_name {
    color: rgba(255,255,255,0.85);
}

.section_4_tab.active .section_4_tab_thumb {
    border-color: var(--signature-color);
    background: #eeeded;
}

.section_4_tab.active .section_4_tab_name {
    color: #fff;
    font-weight: 600;
}

.section_4_right {
    width: 60%;
    /* background: #f5f5f5; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 50px);
}

.section_4_panel {
    display: none;
    animation: fadeInPanel 0.5s ease;
}

.section_4_panel.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section_4_panel_head {
    width: 100%;
    text-align: right;
    margin-bottom: clamp(10px, 1vw, 20px);
}

.section_4_type_label {
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 700;
    color: var(--signature-color);
    letter-spacing: 0.02em;
}

.section_4_type_count {
    display: block;
    font-size: clamp(13px, 1vw, 16px);
    color: #888;
    font-weight: 400;
    margin-top: 4px;
}

.section_4_panel img {
    max-width: 100%;
    max-height: clamp(400px, 40vw, 650px);
    object-fit: contain;
}

/* section_4 반응형 */
@media all and (max-width: 860px) {
    .section_4 {
        flex-direction: column;
    }

    .section_4_left {
        width: 100%;
        min-height: auto;
    }

    .section_4_tabs {
        flex-direction: row;
        gap: clamp(10px, 2vw, 20px);
    }

    .section_4_tab {
        flex-direction: column;
        border-bottom: none;
        padding: clamp(10px, 2vw, 15px) 0;
        gap: 8px;
    }

    .section_4_tab_thumb {
        width: clamp(55px, 15vw, 80px);
        height: clamp(55px, 15vw, 80px);
    }

    .section_4_tab_name {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    .section_4_right {
        width: 100%;
        padding: clamp(20px, 5vw, 40px) var(--padding-mo);
    }
}

@media all and (max-width: 600px) {
    .section_4_left_inner {
        padding: 25px var(--padding-mo);
    }

    .section_4_title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
}


/* ################################### section_5 ################################### */

.section_5 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(60px, 7vw, 140px) 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_5_card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    max-width: 560px;
    width: 100%;
    padding: clamp(35px, 4vw, 60px) clamp(30px, 3.5vw, 50px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.section_5_head {
    text-align: center;
    margin-bottom: clamp(25px, 3vw, 40px);
    padding-bottom: clamp(20px, 2vw, 30px);
    border-bottom: 1px solid #ddd;
}

.section_5_sub {
    font-size: clamp(13px, 1vw, 15px);
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 300;
}

.section_5_title {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 700;
    color: var(--base-color-black);
    letter-spacing: -0.02em;
}

.form_group {
    margin-bottom: clamp(18px, 1.8vw, 25px);
}

.form_label {
    display: block;
    font-size: clamp(13px, 0.9vw, 15px);
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form_input {
    width: 100%;
    height: clamp(40px, 3vw, 48px);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: clamp(13px, 0.9vw, 15px);
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.form_input:focus {
    border-color: var(--signature-color);
}

.form_input::placeholder {
    color: #bbb;
}

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

.form_phone .form_input {
    flex: 1;
}

.form_phone_dash {
    color: #aaa;
    font-size: 14px;
}

.form_select {
    height: clamp(40px, 3vw, 48px);
    line-height: clamp(40px, 3vw, 48px);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: clamp(13px, 0.9vw, 15px);
    color: #333;
    background: #fff;
    outline: none;
    cursor: pointer;
    min-width: 80px;
}

.form_select:focus {
    border-color: var(--signature-color);
}

.form_type_btns {
    display: flex;
    gap: 10px;
}

.form_type_btn {
    flex: 1;
    cursor: pointer;
}

.form_type_btn input {
    display: none;
}

.form_type_btn span {
    display: block;
    text-align: center;
    height: clamp(40px, 3vw, 48px);
    line-height: clamp(40px, 3vw, 48px);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: clamp(13px, 0.9vw, 15px);
    color: #888;
    transition: all 0.3s ease;
}

.form_type_btn input:checked + span {
    border-color: var(--signature-color);
    background: var(--signature-color);
    color: #fff;
    font-weight: 600;
}

.form_agree_group {
    margin-bottom: clamp(20px, 2vw, 30px);
}

.form_agree_box {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: clamp(12px, 1vw, 16px) clamp(14px, 1.2vw, 18px);
    margin-bottom: 10px;
    background: #fafafa;
}

.form_agree_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_agree_text {
    font-size: clamp(13px, 0.85vw, 14px);
    color: #555;
    font-weight: 500;
}

.form_agree_check {
    font-size: clamp(13px, 0.85vw, 14px);
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form_agree_check input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--signature-color);
}

.form_agree_content {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.form_agree_content p {
    font-size: clamp(13px, 0.8vw, 13px);
    color: #888;
    line-height: 1.8;
}

.form_btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_btn {
    width: 100%;
    height: clamp(46px, 3.5vw, 54px);
    border: none;
    border-radius: 4px;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    letter-spacing: 0.02em;
}

.form_btn:hover {
    opacity: 0.85;
}

.form_btn_submit {
    background: var(--signature-color);
    color: #fff;
}

.form_btn_reset {
    background: #444;
    color: #fff;
}

/* section_5 반응형 */
@media all and (max-width: 600px) {
    .section_5 {
        padding: clamp(40px, 8vw, 60px) var(--padding-mo);
    }

    .section_5_card {
        padding: 30px 20px;
    }

    .form_phone {
        gap: 5px;
    }

    .form_select {
        min-width: 70px;
    }
}


/* ################################### footer ################################### */

.footer {
    background: #2a2a2a;
    padding: clamp(30px, 3vw, 50px) 0 clamp(50px, 5vw, 100px) 0;
}

.footer_inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-pc);
    display: flex;
    align-items: flex-start;
    gap: clamp(30px, 3vw, 50px);
}

.footer_left {
    flex-shrink: 0;
}

.footer_logo {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1vw, 18px);
}

.footer_logo img {
    height: clamp(22px, 1.8vw, 32px);
    filter: brightness(0) invert(1);
}

.footer_logo_text {
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.footer_center {
    flex: 1;
}

.footer_center p {
    font-size: clamp(11px, 0.72vw, 13px);
    color: rgba(255,255,255,0.45);
    line-height: 1.9;
}

.footer_right {
    flex-shrink: 0;
    text-align: right;
}

.footer_company {
    font-size: clamp(13px, 0.85vw, 15px);
    color: rgba(255,255,255,0.7);
    line-height: 2;
    white-space: nowrap;
}

.footer_company span {
    display: inline-block;
    margin-right: 8px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.footer_company strong {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.btn_privacy {
    margin-top: 10px;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.7);
    font-size: clamp(13px, 0.8vw, 14px);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_privacy:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.privacy_popup_overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy_popup {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.privacy_popup_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid #eee;
}

.privacy_popup_header h2 {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 700;
    color: #222;
    margin: 0;
}

.privacy_popup_close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.privacy_popup_close:hover {
    color: #333;
}

.privacy_popup_body {
    padding: 24px 28px;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
    color: #444;
    font-size: clamp(13px, 0.85vw, 15px);
    line-height: 1.8;
}

.privacy_popup_body h3 {
    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 700;
    color: #222;
    margin: 24px 0 8px;
}

.privacy_popup_body h3:first-child {
    margin-top: 0;
}

.privacy_popup_body p {
    margin: 0 0 10px;
}

.privacy_popup_body ul {
    margin: 0 0 10px;
    padding-left: 20px;
}

.privacy_popup_body ul li {
    margin-bottom: 4px;
}

.privacy_intro {
    color: #333;
    font-weight: 500;
}

.privacy_table_wrap {
    overflow-x: auto;
    margin: 10px 0;
}

.privacy_table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(13px, 0.8vw, 14px);
}

.privacy_table th,
.privacy_table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.privacy_table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.privacy_table td {
    color: #555;
}

.privacy_notice {
    margin-top: 20px;
    padding: 14px 16px;
    background: #f8f8f8;
    border-left: 3px solid #c9a96e;
    color: #555;
    font-size: clamp(13px, 0.8vw, 14px);
}

/* footer 반응형 */
@media all and (max-width: 860px) {
    .footer_inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer_right {
        text-align: left;
    }
}

@media all and (max-width: 600px) {
    .footer_inner {
        padding: 0 var(--padding-mo);
    }
}