/* ===== Modal CSS (Bootstrap 대체) ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.modal.show {
    display: flex;
}

.modal-dialog {
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #17a2b8;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-header .close:hover {
    color: #000;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

/* Form Controls */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-info {
    background: #17a2b8;
    color: #fff;
}

.btn-info:hover {
    background: #138496;
}

/* ===== End Modal CSS ===== */

.siteTitle {
    display: none;
}

#m_container {
    font-family: 'Noto Sans KR', sans-serif;
    max-width: 100% !important;
    width: 100% !important;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    max-width: 100vw !important;
    width: 100% !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.top_bn {
    width: 100%;
    height: 65px;
    margin: 0 auto;
    text-align: center;
    background: rgb(18, 40, 98);
}

.img_center {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.img_fullwidth {
    width: 100%;
    margin: 0 auto;
}

.floating {
    position: fixed;
    z-index: 1000;
    right: 20px;
    top: 100px;
}

.key {
    padding-right: 20px;
    color: #ffffff;
    padding-left: 20px;
}

/* ========================================
   하단 Sticky CPA 폼 스타일
   ======================================== */
#form {
    background: #2c2c2c;
    padding: 25px 0;
    border-top: 3px solid #00d4ff;
}

#form .container {
    max-width: 900px;
}

#form .row {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
}

#form .row.justify-content-center {
    flex-direction: row !important;
}

#form .form-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

#form .form-header img {
    height: 40px;
    flex-shrink: 0;
}

#form .agree-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

#form .agree-link input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00d4ff;
    flex-shrink: 0;
}

#form .agree-link span {
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;
}

#form .form-inputs {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap !important;
}

#form .key {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    padding: 0 5px;
}

.dash {
    padding-right: 5px;
    padding-left: 5px;
    color: #ffffff;
    line-height: 40px;
}

.footer_input {
    height: 40px;
    padding: 0 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    width: 120px;
    background: #ffffff;
}

.footer_input:focus {
    outline: 2px solid #00d4ff;
}

.footer_input_number {
    width: 65px;
    height: 40px;
    padding: 0 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    background: #ffffff;
}

.footer_input_number:focus {
    outline: 2px solid #00d4ff;
}

.submit_btn {
    margin-left: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #00fcff 100%);
    color: #000000;
    font-weight: 700;
    height: 40px;
    padding: 0 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit_btn:hover {
    background: linear-gradient(135deg, #00b8e6 0%, #00e6e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.product_padding {
    padding: 20px 0;
}

.item_btn {
    margin-top: 15px;
    padding: 5px;
    width: 150px;
    border-radius: 25px;
    background-color: #6A696B;
    color: #FFFFFF;
    border: none;
    margin-bottom: 15px;
}

.m_product {
    width: 150px;
    height: 150px;
    padding-bottom: 10px;
}

.prodm_productuct.left {
    margin-right: 5px;
}

.m_product.right {
    margin-left: 5px;
}

.item_btn:focus {
    background-color: #6A696B !important;

}

.item_btn:not(:disabled):not(.disabled):active {
    background-color: #6A696B !important;
}

.product ul {
    margin: 0 auto;
    list-style: none;
    padding: 0;
    width: 820px;
    text-align: center;
}

.item_btn:not(:disabled):not(.disabled):focus {
    background-color: #6A696B !important;
}

.item_btn.clicked {
    background-color: #8D57FB;
    border: none;
}

.item_btn.clicked:not(:disabled):not(.disabled):active {
    background-color: #8D57FB !important;
}

.item_btn.clicked:not(:disabled):not(.disabled):focus {
    background-color: #8D57FB !important;
}

.item_btn.left {
    margin-right: 5px;
}

.item_btn.right {
    margin-left: 5px;
}

.display_none {
    display: none;
}

.display_block {
    display: block;
}

.carousel-indicators li {
    width: 6px;
    height: 6px;
    border: solid 1px #8e58fb;
    border-radius: 50%;
    background-color: #ffffff;
}

.carousel-indicators li.active {
    width: 6px;
    height: 6px;
    border: solid 1px #8e58fb;
    border-radius: 50%;
    background-color: #8e58fb;
}

.carousel-indicators {
    top: 300px;
}

.carousel-item {
    height: 300px;
}

.row {
    margin: 0;
}

.item_btn.smaller {
    width: 100px;
}

.terms_and_conditions_letters:hover {
    cursor: pointer
}

#footer_container {
    background: #EBEBEB;
    padding: 10px;
}

#m_form_container {
    background: #3a3939;
    z-index: 100;
    text-align: center;
}

.form_text {
    font-size: 12px;
    color: #FFFFFF;
}

.form_text_green {
    color: #00fcff
}

.form_text_green_large {
    font-size: 14px;
    color: #00fcff;
}

label {
    font-weight: bold;
    color: #000000;
}

#contain3 .h1 {
    font-size: 50px;
    letter-spacing: -0.5px;
    color: #3a2991;
    font-weight: 700;
    text-align: center;
}

#contain3 .h1 span {
    color: #f20f44;
    font-weight: 700;
}

#contain4 {
    background: #3a279a;
    text-align: center;
    padding: 0;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* 꽃가루 추가 부분 */
#contain4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/flower.png") center no-repeat;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    height: 400px;
}

#contain4 > .section-life-banner {
    position: relative;
    z-index: 2;
}

.section-life-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.life-banner-title {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.life-banner-title strong {
    color: #00ffe0;
    font-weight: 700;
}

.life-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.life-banner-left {
    flex-shrink: 0;
}

.life-banner-left img {
    height: 200px;
    width: auto;
}

.life-banner-center {
    display: flex;
    gap: 10px;
}

.life-ticket {
    background: #fff;
    border-radius: 8px;
    padding: 25px 40px;
    text-align: center;
    position: relative;
    min-width: 280px;
}

/* .life-ticket 양쪽 둥근 장식 - #contain4 외부용 */
.life-ticket::before,
.life-ticket::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 40px;
    border-radius: 0 20px 20px 0;
}

.life-ticket::before {
    left: -3px;
}

.life-ticket::after {
    right: -3px;
    border-radius: 20px 0 0 20px;
}

/* #contain4 내부에서는 둥근 장식 제거 */
#contain4 .life-ticket::before {
    content: none;
}

.life-ticket .ticket-sub {
    font-size: 22px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.life-ticket .ticket-main {
    font-size: 25px;
    color: #5046e5;
    margin: 0;
    font-weight: 700;
}

.life-banner-right {
    flex-shrink: 0;
}

.life-banner-right img {
    height: 180px;
    width: auto;
}

/* contain4 반응형 */
@media (max-width: 1024px) {
    .life-banner-content {
        flex-wrap: wrap;
    }

    .life-ticket {
        min-width: 240px;
        padding: 20px 30px;
    }

    .life-ticket .ticket-sub {
        font-size: 18px;
    }

    .life-ticket .ticket-main {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .life-banner-title {
        font-size: 28px;
    }

    .life-banner-content {
        flex-direction: column;
    }

    .life-banner-left,
    .life-banner-right {
        display: none;
    }

    .life-banner-center {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .life-ticket {
        min-width: auto;
        width: 100%;
    }
}

.container_custom {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
}


html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

.product h1 {
    color: #493f90;
    font-size: 60px;
    font-weight: 700;
}

.product p {
    font-size: 37px;
}

strong,
b {
    font-weight: 900;
}

.product td {
    border: 1px solid #cacaca;
    font-size: 20px;
    padding: 5px 0;
    font-weight: 300;
}

.product h2 {
    margin: 20px 0 40px 0;
}

.product table {
    width: 820px;
    margin: 50px auto;
    border-collapse: collapse;
    border-spacing: 0;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

table {
    display: table;
    border-collapse: separate;
    border-spacing: 2px;
    border-color: grey;
}

.product th {
    background: #4a4097;
    color: #fff;
    border: 1px solid #cacaca;
    font-size: 24px;
    font-weight: 400;
    padding: 5px 0;
}

.product th span {
    color: #fbfe00;
}

.product {
    padding: 0;
}

/* ========================================
   제품 테이블 스타일
   ======================================== */
.product-section {
    padding: 20px 0;
}

.product-table-wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
}

.product-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 3px solid #152862;
}

.product-table-header .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-table-header .header-logo {
    height: 70px;
}

.product-table-header .header-badge {
    background: #152862;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 3px;
}

.product-table-header .header-center {
    flex: 1;
    text-align: center;
}

.product-plan-title {
    font-size: 36px;
    color: #152862;
    font-weight: 700;
    margin: 0;
}

.product-table-header .header-right {
    text-align: right;
}

.price-calc {
    font-size: 26px;
    color: #333;
}

.price-calc strong {
    color: #152862;
    font-size: 32px;
}

.product-summary-table {
    width: 100%;
    border-collapse: collapse;
}

.product-summary-table th {
    background: #152862;
    color: #fff;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #152862;
}

.product-summary-table td {
    padding: 20px 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #ddd;
}

.product-summary-table td small {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.product-table-info {
    display: flex;
    justify-content: space-between;
    padding: 12px 25px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #ddd;
    padding: 1px;
}

.product-item {
    background: #fff;
    padding: 20px 15px;
    text-align: center;
}

/* 제품 Flex 그리드 */
.product-flex-grid {
    width: 100%;
    border: 1px solid #ddd;
}

.product-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.product-row:last-child {
    border-bottom: none;
}

.product-cell {
    flex: 1;
    padding: 15px 10px;
    text-align: center;
    border-right: 1px solid #ddd;
    background: #fff;
}

.product-cell:last-child {
    border-right: none;
}

.product-cell-wide {
    flex: 2;
}

/* 제품 그리드 행 패턴 */
.product-row-2 .product-cell { flex: 0 0 50%; max-width: 50%; }
.product-row-3 .product-cell { flex: 0 0 33.333%; max-width: 33.333%; }
.product-row-4 .product-cell { flex: 0 0 25%; max-width: 25%; }
.product-row-5 .product-cell { flex: 0 0 20%; max-width: 20%; }
.product-row-6 .product-cell { flex: 0 0 16.666%; max-width: 16.666%; }

/* 제품 이미지 박스 */
.product-cell .product-img-box {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.product-cell .product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-cell .product-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.3;
    word-break: keep-all;
}

.product-cell .product-model {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    word-break: break-all;
}

/* 이미지 미리보기 모달 */
.image-preview-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.image-preview-modal.show {
    display: flex;
}

.image-preview-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.image-preview-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.image-preview-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.image-preview-close:hover {
    color: #ccc;
}

.image-preview-caption {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    padding: 0 20px;
}

.product-img-box img {
    cursor: pointer;
    transition: transform 0.2s;
}

.product-img-box img:hover {
    transform: scale(1.05);
}

.product-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 10px;
}

.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.product-model {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.product-item-wide {
    grid-column: span 2;
}

/* 제품 테이블 반응형 */
@media (max-width: 768px) {
    .product-table-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .product-table-header .header-left {
        justify-content: center;
    }

    .product-table-header .header-logo {
        height: 40px;
    }

    .product-plan-title {
        font-size: 22px;
    }

    .price-calc {
        font-size: 16px;
    }

    .price-calc strong {
        font-size: 20px;
    }

    .product-summary-table th,
    .product-summary-table td {
        font-size: 12px;
        padding: 8px 5px;
    }

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

    .product-img-box {
        height: 100px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-model {
        font-size: 10px;
    }

    /* 제품 Flex 그리드 반응형 - 모바일 2열 */
    .product-section {
        padding: 10px 5px;
    }

    .product-table-wrap {
        padding: 5px;
        border: none;
    }

    .product-flex-grid {
        border: none;
        width: 100%;
    }

    .product-row {
        display: flex !important;
        flex-wrap: wrap !important;
        border-bottom: none;
        width: 100%;
    }

    .product-row .product-cell,
    .product-row-2 .product-cell,
    .product-row-3 .product-cell,
    .product-row-4 .product-cell,
    .product-row-5 .product-cell,
    .product-row-6 .product-cell {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding: 10px 5px;
    }

    .product-row .product-cell:nth-child(odd) {
        border-right: 1px solid #eee !important;
    }

    .product-cell .product-img-box {
        height: 70px;
        margin-bottom: 6px;
    }

    .product-cell .product-name {
        font-size: 10px;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .product-cell .product-model {
        font-size: 8px;
        line-height: 1.1;
    }

    .product-table-info {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }

    .product-table-info .version {
        font-size: 11px;
    }

    .product-table-info .notice {
        font-size: 10px;
    }
}

/* 모바일 전용 (576px 미만) - Bootstrap sm 브레이크포인트 */
@media (max-width: 575.98px) {
    /* 전체 컨테이너 여백 리셋 */
    #m_container {
        padding: 0 !important;
        margin: 0 !important;
    }

    #m_container .container,
    #m_container .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    #m_container .product-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 0 !important;
        margin: 0 !important;
    }

    #m_container .product-table-wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border-left: none !important;
        border-right: none !important;
    }

    #m_container .product-flex-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #m_container .product-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #m_container .product-cell {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        box-sizing: border-box !important;
        padding: 8px 4px !important;
        margin: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
    }

    #m_container .product-cell:nth-child(odd) {
        border-right: 1px solid #eee !important;
    }

    #m_container .product-cell .product-img-box {
        height: 60px !important;
    }

    #m_container .product-cell .product-name {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }

    #m_container .product-cell .product-model {
        font-size: 7px !important;
    }

    /* 요약 테이블 */
    #m_container .product-summary-table {
        font-size: 10px;
        width: 100% !important;
    }

    #m_container .product-summary-table th,
    #m_container .product-summary-table td {
        padding: 5px 3px;
        font-size: 9px;
    }

    #m_container .product-table-header {
        flex-direction: column;
        gap: 5px;
        padding: 10px 5px;
    }

    #m_container .product-plan-title {
        font-size: 16px;
    }

    #m_container .price-calc {
        font-size: 12px;
    }

    #m_container .product-table-info {
        padding: 8px 5px !important;
    }

    /* 배너 이미지 전체 너비 */
    #m_container .img_center {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

.product li {
    display: inline-block;
    border: 1px solid #ccc;
    width: 186px;
    height: 200px;
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
    vertical-align: middle;
}

.product li div {
    height: 150px;
    line-height: 150px;
}

.product li img {
    max-width: 190px;
    max-height: 150px;
    vertical-align: middle;
}

.product li b {
    font-size: 16px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product li p {
    font-weight: 300;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product li:nth-child(5n) {
    margin-right: 0;
}

#special2 li:nth-child(5n) {
    margin-right: 0;
}

#special2 ul {
    width: 1030px !important;
}

#special2 li:nth-child(4n) {
    margin-right: 20px;
}

.product .info {
    color: #686868;
    font-size: 14px;
    margin-top: 20px;
}

#contain7 {
    background: #e5e5e5;
    text-align: center;
    color: #272969;
    font-size: 32px;
    padding: 30px 0;
    font-weight: 700;
}

#contain7 img {
    margin-right: 10px;
}

#contain7 b {
    font-size: 40px;
    font-weight: 900;
}

#contain8_1 {
    padding: 20px 0;
    background: #deebf7;
    font-weight: 500;
}

#contain8 {
    padding: 60px 0;
    background: #eef3ff;
    font-weight: 500;
}

#contain8 .h1 {
    margin-bottom: 25px;
    color: #3a279a;
    letter-spacing: -1px;
    font-size: 42px;
    font-weight: 700;
}

#contain8 h2 {
    font-weight: 300;
    font-size: 58px;
    color: #3a279a;
    line-height: 70px;
}

strong,
b {
    font-weight: 900;
}

#contain8 h2 {
    font-weight: 300;
    font-size: 58px;
    color: #3a279a;
    line-height: 70px;
}

#contain8 h3 {
    font-size: 50px;
    background: #3a279a;
    color: #fff;
    width: 910px;
    margin: 30px auto 90px auto;
    line-height: 65px;
}

#contain8 h3 span {
    color: #00ffea;
}

#contain8 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}

#contain8 li {
    float: left;
    width: 400px;
}

label,
input,
button,
select,
img {
    vertical-align: middle;
}

#contain8 li strong {
    display: block;
    font-size: 34px;
    color: #4636c3;
    margin-top: 30px;
}

#contain8 li p {
    font-weight: 400;
    font-size: 24px;
}

#contain9 {
    background: url(../img/13.png) center;
    background-size: cover;
    height: 800px;
    text-align: center;
    position: relative;
}

#contain9 h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
    padding-top: 60px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: bold;
}

#contain9 .h1 {
    color: #fff;
    font-size: 65px;
    text-shadow: 2px 3px 5px #555;
}

#contain9 .h1 span {
    color: #00ffe4;
}

#contain9 p {
    color: #fff600;
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

#contain10 .h1 {
    font-weight: 400;
    font-size: 42px;
    color: rgb(64, 46, 157);
}

#contain10 {
    background: rgb(238, 243, 255);
    padding: 60px 0px;
}

#contain10 h2 {
    margin: 50px 0px;
}

#contain10 ul {
    display: inline-block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

#contain10 li {
    float: left;
    margin-right: 30px;
}

#contain10 li div {
    box-shadow: rgb(220, 231, 255) -7px 5px;
}

#contain10 li h4 {
    font-size: 29px;
    color: rgb(94, 94, 94);
    margin-top: 40px;
    font-weight: 700;
}

#contain10 li h3 {
    font-size: 36px;
    color: rgb(103, 73, 253);
    font-weight: 700;
}

#contain10 li:last-child {
    margin: 0;
}

#ft {
    min-width: 970px;
}

#ft_copy {
    background: #fff;
}

#ft_copy div {
    position: relative;
    width: 970px;
    margin: 0px auto;
    padding: 30px 0px;
}

#ft p {
    line-height: 26px;
    text-align: center;
    color: #333;
    font-size: 14px;
    margin: 0px;
}

#ft p a {
    color: #333;
    text-decoration: none;
}

#ft p a:hover {
    text-decoration: underline;
}

#dm_imready_special_life {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: bold;
}

#top_img {}

#m_navbar {
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
}

.img_navbar {
    position: relative;
}

#m_may_change {
    width: 300px;
    margin: 0 auto;
    padding: 20px 0 5px 0;
}

.terms-and-cond-modal .modal-content {
    height: 400px !important;
    overflow: scroll;
}

.mobileFooter {
    padding: 20px 15px;
    text-align: center;
    background-color: #fff;
    font-size: 12px;
    line-height: 22px;
    color: #333;
}

.mobileFooter a {
    color: #333;
    text-decoration: none;
}

.mobileFooter a:hover {
    text-decoration: underline;
}


/*
	개인정보이용동의 팝업
*/
#privacyAgreePopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.7);
}

#privacyAgreePopup .popupWrap {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 90%;
    letter-spacing: -1px;
    padding: 30px;
    box-sizing: border-box;
    background-color: #ffffff;
}

#privacyAgreePopup .popupWrap .scrollWrap {
    height: calc(100% - 115px);
    overflow-y: auto;
}

#privacyAgreePopup .popupWrap .popupTitle {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

#privacyAgreePopup .popupWrap .infoText {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 15px;
}

#privacyAgreePopup .popupWrap .agreeAllCell {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

#privacyAgreePopup .popupWrap .agreeAllCell label {
    margin-left: 20px;
}

#privacyAgreePopup .popupWrap input[type=checkbox] {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
}

#privacyAgreePopup .popupWrap .agreeBox {
    border: solid 1px #cccccc;
    padding: 15px;
    margin-bottom: 20px;
}

#privacyAgreePopup .popupWrap .agreeBox .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

#privacyAgreePopup .popupWrap .agreeBox .content {
    height: 80px;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f0f0f0;
}

#privacyAgreePopup .popupWrap .agreeBox .agreeCheckCell {
    font-size: 15px;
    color: #000000;
}

#privacyAgreePopup .popupWrap .btnClosePopup {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

#privacyAgreePopup .popupWrap .btnOk {
    width: 120px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    border-radius: 20px;
    padding: 10px 0;
    margin: 0 auto;
    margin-top: 15px;
    cursor: pointer;
    background-color: #111111;
}

@media (max-width: 640px) {
    #privacyAgreePopup .popupWrap {
        padding: 10px;
    }

    #privacyAgreePopup .popupWrap .scrollWrap {
        height: calc(100% - 90px);
    }

    #privacyAgreePopup .popupWrap .popupTitle {
        font-size: 18px;
        margin-bottom: 15px;
    }

    #privacyAgreePopup .popupWrap .infoText {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    #privacyAgreePopup .popupWrap .agreeAllCell {
        font-size: 14px;
        margin-bottom: 10px;
    }

    #privacyAgreePopup .popupWrap .agreeAllCell label {
        margin-left: 10px;
    }

    #privacyAgreePopup .popupWrap input[type=checkbox] {
        width: 16px;
        height: 16px;
        vertical-align: -3px;
    }

    #privacyAgreePopup .popupWrap .agreeBox {
        padding: 0;
        margin-bottom: 10px;
        border: 0;
    }

    #privacyAgreePopup .popupWrap .agreeBox .title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    #privacyAgreePopup .popupWrap .agreeBox .content {
        height: 100px;
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 10px;
        padding: 10px;
    }

    #privacyAgreePopup .popupWrap .agreeBox .agreeCheckCell {
        font-size: 14px;
    }

    #privacyAgreePopup .popupWrap .btnClosePopup {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 30px;
        cursor: pointer;
    }

    #privacyAgreePopup .popupWrap .btnOk {
        width: 80px;
        font-size: 14px;
        padding: 10px 0;
        margin-top: 10px;
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* 체크박스 스타일 */
.benefit-list {
    background-color: #e3eef8;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

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

.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ff0000;
    border-radius: 4px;
    background-color: #ff0000;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.benefit-text {
    font-weight: 700;
    color: #ff0000;
}

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

/* 환급 배너 모바일 최적화 */
.refund-banner {
    background-color: transparent;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.refund-title {
    font-size: 72px;
    font-weight: 700;
    color: #4A4097;
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 1.1;
    word-break: keep-all;
    /* 한글 단어 단위 줄바꿈 */
}

.refund-subtitle {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
    word-break: keep-all;
    /* 한글 단어 단위 줄바꿈 */
}

/* 메인 타이틀 모바일 최적화 */
#contain3 {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

#contain3 .h1 {
    font-size: 50px;
    letter-spacing: -0.5px;
    color: #3a2991;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
    margin-bottom: 40px;
}

#contain3 .product-img {
    max-width: 100%;
    width: 900px;
    height: auto;
}

#contain4 .h1 {
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
    word-break: keep-all;
}

/* 태블릿 (768px ~ 1024px) */
@media (max-width: 1024px) {
    .refund-title {
        font-size: 56px;
    }

    .refund-subtitle {
        font-size: 40px;
    }

    #contain3 .h1 {
        font-size: 42px;
    }

    #contain4 .h1 {
        font-size: 42px;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {
    .refund-banner {
        padding: 30px 15px;
    }

    .refund-title {
        font-size: 36px;
        letter-spacing: -1px;
        white-space: nowrap;
        /* 한 줄 유지 */
    }

    .refund-subtitle {
        font-size: 24px;
        padding: 0 10px;
        /* 필요시 두 줄로 나누기 */
        white-space: normal;
    }

    #contain3 .h1 {
        font-size: 28px;
        padding: 0 15px;
        line-height: 1.4;
    }

    #contain4 .h1 {
        font-size: 32px;
        padding: 0 15px;
    }

    /* 모바일 전용 헬퍼 클래스 */
    .mobile-break {
        display: none;
    }

    @media (max-width: 768px) {
        .mobile-break {
            display: block;
        }
    }

    /* 하단 경고 텍스트 */
    .bottom-warning,
    .bottom-text,
    .small-text {
        font-size: 12px;
        padding: 0 10px;
        line-height: 1.4;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {
    .refund-title {
        font-size: 28px;
        /* 매우 작은 화면에서는 줄바꿈 허용 */
        white-space: normal;
    }

    .refund-subtitle {
        font-size: 18px;
        line-height: 1.3;
    }

    #contain3 .h1 {
        font-size: 22px;
    }

    #contain4 .h1 {
        font-size: 24px;
    }

    /* 매우 작은 화면용 추가 조정 */
    .small-text {
        font-size: 11px;
    }
}

/* 아주 작은 모바일 (360px 이하) */
@media (max-width: 360px) {
    .refund-title {
        font-size: 24px;
    }

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

    #contain3 .h1 {
        font-size: 20px;
    }
}

/* 텍스트 줄바꿈 최적화를 위한 추가 스타일 */
.no-wrap {
    white-space: nowrap;
}

.keep-all {
    word-break: keep-all;
}

/* Flexbox를 이용한 반응형 텍스트 */
.flex-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 480px) {
    .flex-title {
        flex-direction: column;
        align-items: center;
    }
}

/* 작은 글씨 스타일 */
.small-text {
    display: block;
    font-size: 14px;
    color: #ff0000;
    font-weight: bold;
    margin-top: 5px;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .small-text {
        font-size: 12px;
    }
}

#contain3 {
    padding: 100px 0 50px 0;
    background-color: white;
    text-align: center;
}

#contain3 .brand-logo-area {
    margin-bottom: 30px;
}

#contain3 .brand-logo-img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    #contain3 .brand-logo-img {
        height: 35px;
    }

    #contain3 .brand-logo-area {
        margin-bottom: 20px;
    }
}

/* 로고 섹션 */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.brand-logo {
    height: 50px;
}

.samsung-logo {
    background-color: #1428a0;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
}

.lg-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
}

.lg-circle {
    width: 50px;
    height: 50px;
    background-color: #c4004c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

/* 메인 타이틀 */
.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #3a2991;
    margin-bottom: 60px;
    line-height: 1.3;
}

.highlight {
    color: #ff0040;
}

.main-title .underline {
    position: relative;
    display: inline-block;
}

.main-title .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff0040;
    transform: rotate(-2deg);
}

/* 제품 이미지 섹션 */
.bottom-text {
    color: #ff0040;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .bottom-text {
        font-size: 14px;
    }
}

/* 하단 텍스트 스타일 */
#contain3 {
    position: relative;
    padding-bottom: 80px;
}

.bottom-warning {
    position: absolute;
    bottom: 55%;
    left: 58.5%;
    transform: translateX(-50%);
    color: #ff0040;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    max-width: 800px;
    letter-spacing: -0.5px;
}

/* 반응형 */
@media (max-width: 768px) {
    .bottom-warning {
        font-size: 12px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .bottom-warning {
        font-size: 11px;
        padding: 0 20px;
    }
}

/* 상단 혜택 배너 스타일 추가 */
.top-benefit-banner {
    background: linear-gradient(135deg, #5B3CC4 0%, #8B5CF6 100%);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
}

.top-benefit-banner .highlight-text {
    color: #FFE500;
    font-weight: 800;
}

/* 모바일 환급 배너 크기 조정 */
@media (max-width: 768px) {
    .refund-banner {
        padding: 20px 10px;
        margin-bottom: 20px;
    }

    .refund-title {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }

    .refund-subtitle {
        font-size: 18px;
        line-height: 1.3;
    }

    /* 상단 배너 모바일 조정 */
    .top-benefit-banner {
        font-size: 13px;
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .refund-title {
        font-size: 24px;
    }

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

    .top-benefit-banner {
        font-size: 12px;
        padding: 10px 5px;
    }
}

/* 제품 이미지 컨테이너 조정 */
.container.product_padding {
    padding: 20px 10px;
}

.container.product_padding img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* ========================================
   상단 CPA 폼 스타일
   ======================================== */
#form_top {
    background: #2c2c2c;
    padding: 25px 0;
    border-bottom: 3px solid #00d4ff;
}

#form_top .container {
    max-width: 900px;
}

#form_top .row {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
}

#form_top .row.justify-content-center {
    flex-direction: row !important;
}

.form-top-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-top-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.form-top-subtitle {
    color: #00d4ff;
    font-size: 22px;
    font-weight: 700;
}

.form-top-agree {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: background 0.2s;
}

.form-top-agree:hover {
    background: rgba(255, 255, 255, 0.2);
}

.form-top-agree input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #00d4ff;
}

.form-top-agree span {
    color: #cccccc;
    font-size: 13px;
}

.form-top-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.form-top-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-top-field label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    min-width: 50px;
}

.form-top-field input {
    height: 42px;
    padding: 0 15px;
    border: 2px solid #444;
    border-radius: 6px;
    background: #ffffff;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-top-field input:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-top-field input::placeholder {
    color: #999;
}

#name_input_top {
    width: 140px;
}

.phone-inputs {
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-inputs input {
    width: 70px;
    text-align: center;
}

.phone-dash {
    color: #666;
    font-size: 18px;
    font-weight: bold;
}

.form-top-submit {
    height: 42px;
    padding: 0 30px;
    background: #00d4ff;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.form-top-submit:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

/* 프로모션 배너 섹션 */
#promo_banner {
    width: 100%;
    text-align: center;
    padding: 40px 15px;
    background: #fff;
}

#promo_banner img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* 상단 CPA 폼 반응형 - PC 폼은 d-none d-sm-block 이므로 모바일 CSS 불필요 */
@media (max-width: 768px) {
    .form-top-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .form-top-title {
        font-size: 15px;
    }

    .form-top-subtitle {
        font-size: 18px;
    }

    .form-top-inputs {
        flex-direction: column;
        gap: 12px;
    }

    .form-top-field {
        width: 100%;
        justify-content: center;
    }

    #name_input_top {
        width: 180px;
    }

    .phone-inputs input {
        width: 60px;
    }

    .form-top-submit {
        width: 200px;
        margin-top: 5px;
    }
}

/* ========================================
   Navigation & Header Styles
   ======================================== */

/* Header Top Bar */
.site-header {
    position: relative;
    z-index: 1000;
}

.header-top-bar {
    background: #122862;
    padding: 8px 0;
    color: #fff;
    font-size: 13px;
}

.header-top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Bootstrap 대체 - flex 레이아웃 */
.header-top-bar .d-flex {
    display: flex;
}

.header-top-bar .justify-content-between {
    justify-content: space-between;
}

.header-top-bar .align-items-center {
    align-items: center;
}

.header-top-bar a {
    color: #fff;
    text-decoration: none;
}

.header-top-bar a:hover {
    color: #00fcff;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-contact span {
    margin-right: 20px;
}

.header-contact span.ml-3 {
    margin-left: 1rem;
}

.header-contact i {
    margin-right: 5px;
}

.header-links {
    display: flex;
    align-items: center;
}

.btn-consult-sm {
    background: #00fcff;
    color: #000 !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-consult-sm:hover {
    background: #fff;
    text-decoration: none;
}

/* Main Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.main-nav .logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #122862;
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: #122862;
    border-radius: 2px;
}

.header-phone img {
    height: 40px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Breadcrumb */
.breadcrumb-area {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-area .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.breadcrumb-item {
    color: #6c757d;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '>';
    padding: 0 10px;
    color: #adb5bd;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #122862;
}

.breadcrumb-item.active {
    color: #122862;
    font-weight: 500;
}

/* Mobile Header */
.mobile-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    height: 55px;
}

.mobile-logo img {
    height: 30px;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-phone img {
    height: 30px;
}

.mobile-nav-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.show {
    display: block;
}

.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f1f3f5;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu li.active a {
    background: #f8f9fa;
    color: #122862;
}

/* Mobile Breadcrumb */
.mobile-breadcrumb {
    background: #f8f9fa;
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-breadcrumb .breadcrumb {
    font-size: 12px;
}

/* Responsive Utilities */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }
}

@media (max-width: 575.98px) {
    .d-sm-none {
        display: block !important;
    }

    .d-sm-block {
        display: none !important;
    }
}

/* Desktop Navigation - Medium Screen */
@media (max-width: 992px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .nav-item.active .nav-link::after {
        left: 12px;
        right: 12px;
    }
}

/* Desktop Navigation - Small Screen */
@media (max-width: 768px) {
    .header-top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .header-contact span {
        margin-right: 10px;
    }

    .nav-wrapper {
        height: 60px;
    }

    .main-nav .logo img {
        height: 35px;
    }

    .nav-menu {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }

    .header-phone img {
        height: 35px;
    }
}

/* ========================================
   Split Section Layout (좌우 분할)
   ======================================== */

.split-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.split-left,
.split-right {
    flex: 1 1 50%;
    min-width: 0;
    min-height: 500px;
}

.split-left {
    background: #fff;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-right {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-inner {
    width: 100%;
    text-align: center;
}

.split-left .split-inner img {
    max-width: 100%;
    height: auto;
}

.split-left .split-inner img.product-img {
    max-width: 90%;
    width: 500px;
}

.split-right .split-inner img {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
}

.split-title {
    margin: 20px 0;
}

.split-title .h1 {
    font-size: 26px;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.split-title .h1 span {
    color: #6250ec;
}

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

/* Split Section - Tablet */
@media (max-width: 992px) {

    .split-left,
    .split-right {
        min-height: 400px;
        padding: 30px 15px;
    }

    .split-title .h1 {
        font-size: 22px;
    }
}

/* Split Section - Mobile (세로 스택) */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        flex: 1 1 100%;
        min-height: auto;
    }

    .split-left {
        padding: 30px 15px;
        order: 1;
    }

    .split-right {
        padding: 20px 15px;
        order: 2;
    }

    .split-title .h1 {
        font-size: 20px;
    }
}

/* ========================================
   서비스 상세내역 테이블 스타일
   ======================================== */
.service-detail-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
}

.service-detail-table caption {
    background: #2a7fff;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 20px;
    text-align: center;
    caption-side: top;
}

.service-detail-table th,
.service-detail-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
}

.service-detail-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.service-detail-table td {
    background: #fff;
    color: #333;
}

.service-detail-table .category-main {
    background: #f8f9fa;
    font-weight: 600;
    width: 120px;
    white-space: nowrap;
}

.service-detail-table .category-sub {
    background: #f8f9fa;
    font-weight: 500;
    width: 100px;
    white-space: nowrap;
}

.service-detail-table .item-name {
    width: 220px;
    text-align: center;
    white-space: nowrap;
}

.service-detail-table .item-detail {
    text-align: center;
}

/* 서비스 테이블 반응형 */
@media (max-width: 768px) {
    .service-detail-table {
        font-size: 11px;
    }

    .service-detail-table caption {
        font-size: 16px;
        padding: 12px 15px;
    }

    .service-detail-table th,
    .service-detail-table td {
        padding: 8px 5px;
    }

    .service-detail-table .category-main {
        width: 70px;
        white-space: normal;
    }

    .service-detail-table .category-sub {
        width: 55px;
        white-space: normal;
    }

    .service-detail-table .item-name {
        width: auto;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .service-detail-table {
        font-size: 10px;
    }

    .service-detail-table caption {
        font-size: 14px;
        padding: 10px 10px;
    }

    .service-detail-table th,
    .service-detail-table td {
        padding: 5px 3px;
    }

    .service-detail-table .category-main {
        width: 55px;
    }

    .service-detail-table .category-sub {
        width: 45px;
    }
}

/* ========================================
   혜택 텍스트 배너 스타일 (9_text.png 대체)
   ======================================== */
.benefit-text-banner {
    text-align: center;
    margin: 50px 0;
}

.benefit-text-main {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-text-main .text-blue {
    color: #3a2991;
    font-style: italic;
}

.benefit-text-main .text-plus,
.benefit-text-main .text-equal {
    color: #3a2991;
    font-weight: 900;
    font-style: italic;
}

.benefit-text-main .text-pink {
    color: #ff2d55;
    font-style: italic;
}

.benefit-text-sub {
    font-size: 24px;
    font-weight: 500;
    color: #ff2d55;
    line-height: 1.4;
}

/* 혜택 텍스트 배너 반응형 */
@media (max-width: 768px) {
    .benefit-text-main {
        font-size: 28px;
        gap: 5px;
    }

    .benefit-text-sub {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .benefit-text-main {
        font-size: 22px;
        gap: 3px;
    }

    .benefit-text-sub {
        font-size: 14px;
    }
}

/* ========================================
   약관 안내 (termsinfo) 스타일
   ======================================== */
.terms-info {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
}

.terms-info-header {
    background: #152862;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terms-info-header .logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terms-info-header .logo-area .terms-logo {
    height: 100px;
    width: auto;
}

.terms-info-header .title-area {
    flex: 1;
    text-align: center;
}

.terms-info-header .title-area h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -1px;
}

.terms-info-header .version-area {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
}

.terms-info-body {
    background: #fff;
    padding: 35px;
    border: 1px solid #ddd;
    border-top: none;
}

.terms-info-body .section-title {
    color: #152862;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.terms-info-body .section-title::before {
    content: "▶";
    color: #152862;
}

.terms-info-body .desc-text {
    font-size: 16px;
    color: #000;
    line-height: 2;
    margin-bottom: 25px;
}

.terms-info-body .desc-text .label {
    color: #152862;
    font-weight: 700;
}

.terms-info-body .sub-section {
    margin-bottom: 30px;
}

.terms-info-body .sub-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.terms-info-body .product-item {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-info-body .product-item .product-name {
    color: #5b7ab5;
    font-weight: 600;
    font-size: 16px;
}

.terms-info-body .product-item .product-detail {
    font-size: 16px;
    color: #000;
    padding-left: 10px;
}

.terms-info-body .bullet-section {
    margin-top: 30px;
}

.terms-info-body .bullet-title {
    font-size: 20px;
    font-weight: 700;
    color: #152862;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-info-body .bullet-title::before {
    content: "●";
    color: #152862;
}

.terms-info-body .bullet-list {
    font-size: 16px;
    color: #000;
    line-height: 2;
}

.terms-info-body .bullet-list p {
    margin: 0 0 8px 0;
    padding-left: 10px;
}

/* 약관 테이블 스타일 */
.terms-info-body .terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.terms-info-body .terms-table th,
.terms-info-body .terms-table td {
    border: 1px solid #ccc;
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
}

.terms-info-body .terms-table thead th {
    background: #152862;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
}

.terms-info-body .terms-table tbody td {
    background: #f5f5f5;
    font-weight: 600;
    color: #000;
}

/* 해약환급율 테이블 */
.terms-info-body .refund-table thead th {
    background: #152862;
    color: #fff;
}

.terms-info-body .refund-table tbody td {
    background: #fff;
    font-weight: 400;
    color: #000;
}

.terms-info-body .refund-table tbody td.label-cell {
    background: #f5f5f5;
    font-weight: 600;
    width: 220px;
    color: #000;
}

/* 약관 주석 텍스트 */
.terms-info-body .terms-note {
    font-size: 15px;
    color: #333;
    margin: 15px 0 0 0;
    padding-left: 10px;
}

/* 약관 안내 반응형 */
@media (max-width: 768px) {
    .terms-info-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }

    .terms-info-header .logo-area .terms-logo {
        height: 70px;
    }

    .terms-info-header .title-area h2 {
        font-size: 22px;
    }

    .terms-info-header .version-area {
        font-size: 13px;
    }

    .terms-info-body {
        padding: 20px 15px;
    }

    .terms-info-body .section-title {
        font-size: 17px;
    }

    .terms-info-body .desc-text,
    .terms-info-body .product-item .product-detail,
    .terms-info-body .bullet-list {
        font-size: 14px;
        line-height: 1.8;
    }

    .terms-info-body .sub-section-title {
        font-size: 14px;
    }

    .terms-info-body .product-item {
        padding-left: 10px;
    }

    .terms-info-body .product-item .product-name {
        font-size: 14px;
    }

    .terms-info-body .bullet-title {
        font-size: 16px;
    }

    .terms-info-body .terms-table th,
    .terms-info-body .terms-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .terms-info-body .terms-table thead th {
        font-size: 14px;
    }

    .terms-info-body .refund-table tbody td.label-cell {
        width: 130px;
    }

    .terms-info-body .terms-note {
        font-size: 13px;
    }
}



#contain4 .life-ticket {
    min-width: 280px;
    min-height: 140px;
    background: url('../img/section_life_washing_machine_right.png') no-repeat center / contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 0;
}
#contain4 .life-banner-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.life-ticket-text {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

#contain4 .section-life-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}
/* ===== #contain4 life-ticket 기본 ===== */
#contain4 .life-ticket {
    min-width: 280px;
    min-height: 140px;
    background: url("../img/section_life_washing_machine_right.png")
    no-repeat center / contain;

    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 0;
}

/* 글씨는 항상 위 */
#contain4 .life-ticket p {
    position: relative;
    z-index: 2;
}

/* ===== 첫 번째 티켓 : 세탁기 (아래) ===== */
#contain4 .life-banner-center .life-ticket:first-child::after {
    content: "";
    position: absolute;
    top: 100px;
    right: 230px;
    width: 200px;
    height: 200px;
    transform: none;
    border-radius: 0;

    background: url("../img/washing.png")
    no-repeat center / contain;

    z-index: 1;
    pointer-events: none;
}

/* ===== 두 번째 티켓 : 코인 (아래) ===== */
#contain4 .life-banner-center .life-ticket:last-child::after {
    content: "";
    position: absolute;
    top: 130px;
    right: -200px;
    width: 180px;
    height: 180px;
    transform: none;
    border-radius: 0;
    background: url("../img/coin.png")
    no-repeat center / contain;
    z-index: 1;
    pointer-events: none;
}

/* ===== 모바일 좌우 스크롤 방지 ===== */
html, body {
    overflow-x: hidden;
}

/* ===== 모바일 폼 컨테이너 ===== */
#m_form_container_top {
    background: #3a3939;
    padding: 15px 0;
    width: 100%;
}

#m_form_container_top .row {
    margin: 0;
    padding: 10px 15px;
}

#m_form_container_top .form_text {
    font-size: 14px;
    color: #fff;
    display: block;
    line-height: 1.6;
}

#m_form_container_top .form_text_green {
    color: #00fcff;
}

#m_form_container_top .form_text_green_large {
    font-size: 18px;
    color: #00fcff;
    font-weight: 700;
}

#m_form_container_top a {
    display: block;
    text-align: center;
    margin-top: 10px;
}

#m_form_container_top img {
    max-width: 200px;
    height: auto;
}

/* ===== 환급 배너 중앙정렬 ===== */
.refund-banner {
    width: 100%;
}

/* ===== 제품 이미지 중앙정렬 ===== */
.row.justify-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.row.justify-content-center img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    /* 모바일 이미지 오버플로우 방지 */
    img {
        max-width: 100%;
        height: auto;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    /* ===== 서브섹션 모바일 반응형 ===== */
    .sub-section {
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .sub-section-title {
        font-size: 15px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        text-align: left;
    }

    .product-item {
        padding: 0 0 20px 0;
        margin-bottom: 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .product-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .product-item .product-name {
        font-size: 15px;
        font-weight: 600;
        color: #5b7ab5;
        display: block;
        margin-bottom: 12px;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .product-item .product-detail {
        font-size: 13px;
        color: #333;
        line-height: 2;
        display: block;
        padding-left: 5px;
        margin-bottom: 5px;
        word-break: keep-all;
    }

    /* br 태그 간격 */
    .product-item br {
        display: block;
        content: "";
        margin-bottom: 3px;
    }
}
