/* ============================================
   Optimized CSS for index.php
   Created: 2025
   Description: Contains only CSS rules actually used in index.php
   ============================================ */

/* ============================================
   Import Fonts
   ============================================ */
/* Google Fonts 최적화 - font-display: swap 적용 */
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

/* 커스텀 폰트 - font-display: swap 적용 */
@font-face {
    font-family: 'yg-jalnan';
    src: url(/fonts/JalnanOTF00.woff) format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* 텍스트 즉시 표시 */
}

/* Noto Sans KR 폰트 오버라이드 */
@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Noto Sans KR Regular'), local('NotoSansKR-Regular'),
         url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'),
         url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Noto Sans KR Bold'), local('NotoSansKR-Bold'),
         url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format('woff2'),
         url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format('woff');
}

/* ============================================
   Base Styles & Resets
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f8f9fd;
    overflow-x: hidden;
}

body {
    background-color: #f7f9fa;
}

p, label, button {
    font-family: 'Noto Sans KR', sans-serif;
}

a, a:focus, a:hover, button {
    color: inherit;
    text-decoration: none;
}

*,p,ul {
    padding: 0;
    margin: 0;
}

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

ul {
    list-style: none;
}

li {
    list-style: none;
}

/* ============================================
   Typography & Text Utilities
   ============================================ */
.title_font {
    font-family: 'yg-jalnan', sans-serif !important;
}

.text-12 { font-size: 12px !important; }
.text-14 { font-size: 14px; }
.text-16 { font-size: 16px !important; }
.text-20 { font-size: 20px; }
.text-24 { font-size: 24px !important; }
.text-26 { font-size: 26px; }
.text-30 { font-size: 30px !important; }
.text-32 { font-size: 32px !important; }
.text-34 { font-size: 34px !important; }
.text-50 { font-size: 50px !important; }
.text-60 { font-size: 60px; line-height: 60px !important; }

.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-900 { font-weight: 900 !important; }

.ls-1 { letter-spacing: -1px !important; }
.ls-2 { letter-spacing: -2px !important; }
.ls-5 { letter-spacing: -5px !important; }

.lh-35px { line-height: 35px !important; }

/* ============================================
   Color Utilities
   ============================================ */
.mt_color { color: #6841fe !important; }
.mt_color2 { color: #cc6600 !important; } /* 대비 개선: 기존 #ff8a00에서 변경 */
.mt_color3 { color: #c41e7f !important; } /* 대비 개선: 기존 #fd41ad에서 변경 */
.mt_color5-1 { color: #6c6c6c !important; }
.mt_color6 { color: #d4a000 !important; } /* 대비 개선: 기존 #fde803에서 변경 */
.mt_color7 { color: #005f45 !important; } /* 대비 개선: WCAG AA 기준 충족 */
.mt_color8 { color: #01a561 !important; }
.mt_dark { color: #1f1f1f !important; }
.text-white { color: #333 !important; }
.text-dark { color: #343a40 !important; }
.text-danger { color: #dc3545 !important; }
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }

/* ============================================
   Layout & Grid System
   ============================================ */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12, .col-lg-8, .col-lg-12, .col-md-12, .col-md-9, .col-md-6, .col-md-5, .col-md-3, .col-md-2, .col-md-10, .col-xl-9, .col-xl-4, .col-xl-3, .col-lg-9, .col-lg-4, .col-lg-3, .col-6, .col-4, .col-8, .col-md, .col-md-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 768px) {
    .col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
}

/* ============================================
   Spacing Utilities
   ============================================ */
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-10 { margin-top: 60px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px; }
.mt-70 { margin-top: 70px; }
.mt-sm-0 { margin-top: 0 !important; }
.mt-sm-30 { margin-top: 30px !important; }

.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-lg-5 { margin-bottom: 3rem !important; }

.ms-0 { margin-left: 0 !important; }
.ms-sm-4 { margin-left: 1.5rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }

.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-md-20 { padding-top: 20px !important; }
.pt-md-80 { padding-top: 80px !important; }
.pt-105 { padding-top: 105px !important; }
.pt-lg-125 { padding-top: 125px !important; }

.pb-1 { padding-bottom: 0.25rem !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-100 { padding-bottom: 100px !important; }
.pb-115 { padding-bottom: 115px !important; }
.pb-md-105 { padding-bottom: 105px !important; }
.pb-lg-140 { padding-bottom: 140px !important; }

.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.px-sm-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }

.pe-lg-0 { padding-right: 0 !important; }

.g-0 { gap: 0 !important; }
.gy-4 { row-gap: 1.5rem !important; }

/* ============================================
   Display Utilities
   ============================================ */
.d-block { display: block !important; }
.d-none { display: none !important; }
.d-md-block { display: block !important; }
.d-md-none { display: none !important; }

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

@media (min-width: 768px) {
    .d-block.d-md-none { display: none !important; }
    .d-none.d-md-block { display: block !important; }
}

/* ============================================
   Flexbox Utilities
   ============================================ */
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.flex-wrap { flex-wrap: wrap !important; }

.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }
.order-md-1 { order: 1 !important; }
.order-md-2 { order: 2 !important; }
.order-lg-2 { order: 2 !important; }

/* ============================================
   Section Styles
   ============================================ */
.banner-area-5 {
    background: url(/theme/barit/img/top_bg.webp);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    padding-bottom: 0;
    padding-top: 30px;
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* Banner Main Title - PC & Mobile 공통 */
.banner-main-title {
    color: #333 !important;
}

.banner-area-5 .banner-main-title {
    color: #333 !important;
}

.banner-area-5 h2.main-ts {
    color: #333 !important;
}

/* mt_color는 보라색 유지 */
.banner-main-title .mt_color,
.banner-area-5 .mt_color {
    color: #6841fe !important;
}

.hero-img {
    position: relative;
}

.person-img {
    margin-left: 150px;
}

.main-ts {
    font-size: 48px !important;
    font-weight: 600;
    line-height: 62px;
    letter-spacing: -0.02em;
    color: #333 !important;
}

/* 배너 영역에서 main-ts는 항상 어두운 색 */
.banner-area-5 .main-ts {
    color: #333 !important;
}

/* Expert Videos Section */
.expert-videos-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.expert-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expert-thumbnail {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.expert-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.expert-thumbnail figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.expert-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.expert-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.expert-badge.expert {
    background: #5e35b1; /* 대비 개선 */
    color: #fff;
}

.expert-badge.mbc {
    background: #f9a825; /* 대비 개선 */
    color: #333;
    font-weight: 700;
}

.expert-badge.kbs {
    background: #d32f2f; /* 대비 개선 */
    color: #fff;
}

.expert-badge.sbs {
    background: #00acc1; /* 대비 개선 */
    color: #fff;
}

.expert-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.expert-thumbnail:hover .expert-play-icon {
    background: rgba(255,255,255,1);
}

.expert-card-content {
    padding: 20px;
}

.expert-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.expert-card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.expert-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.expert-card-date {
    font-weight: 500;
}

.expert-card-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.expert-card-views svg {
    fill: #999;
}

/* Feature Area */
.feature-area-3 {
    background: #f8f9fa !important;
}

.border-bottom-dark {
    border-bottom: 1px solid #605959;
}

/* Main Form */
.mainFormWrap {
    background: #e1dbd3;
    border-radius: 32px;
    padding-top: 45px;
    padding-bottom: 20px;
}

.mainFormArea {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.mainTextCell {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1f1f1f;
    line-height: 1.3;
    font-family: 'yg-jalnan', sans-serif;
}

.mainTextCell .mt_color3 {
    color: #e74c3c !important;
    position: relative;
    display: inline-block;
}

.mainTextCell .mt_color3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(231, 76, 60, 0.2);
    z-index: -1;
}

.subTextCell {
    font-size: 26px;
    font-weight: 600;
    margin: 25px 0 35px;
    color: #555;
    line-height: 1.4;
}

.subTextCell .mt_color {
    color: #6841fe !important;
    font-weight: 700;
}

/* Text utilities */
.text-16 {
    font-size: 16px !important;
}

.text-32 {
    font-size: 32px !important;
}

.ls-5 {
    letter-spacing: -0.5px;
}

.mainFormArea .inputWrap {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    margin: 0 8px 15px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 200px;
}

.mainFormArea .inputWrap:hover {
    background: #fff;
    border-color: #e9ecef;
}

.mainFormArea .inputWrap:focus-within {
    background: #fff;
    border-color: #6841fe;
    box-shadow: 0 0 0 4px rgba(104, 65, 254, 0.1);
    transform: translateY(-2px);
}

.mainFormArea .inputWrap input[type="text"],
.mainFormArea .inputWrap .phoneInput,
.mainFormArea .inputWrap .form_control {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    background: transparent;
    padding: 2px 5px;
    font-family: 'Noto Sans KR', sans-serif;
}

.mainFormArea .inputWrap input::placeholder,
.mainFormArea .inputWrap .phoneInput::placeholder,
.mainFormArea .inputWrap .form_control::placeholder {
    color: #999;
}

.mainFormArea .inputWrap select,
.mainFormArea .inputWrap .phoneHeadSelector {
    width: 75px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    padding-right: 5px;
    font-family: 'Noto Sans KR', sans-serif;
}

.mainFormArea .form_control {
    width: 140px;
}

.mainFormArea .phoneInput {
    width: 110px;
    margin-left: 5px;
}

/* Align form elements */
.mainFormArea .row.g-0 {
    gap: 10px;
}

.mainFormArea .col-md-auto {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Soundonly helper class */
.soundonly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Input info text */
.inputInfoTextCell {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 8px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.inputInfoTextCell label {
    cursor: pointer;
    margin-left: 8px;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s ease;
}

.inputInfoTextCell label:hover {
    color: #6841fe;
}

.inputInfoTextCell .checkMain {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    cursor: pointer;
    accent-color: #6841fe;
}

.showPolicyWin {
    cursor: pointer;
}

.phoneHeadSelector, .phoneHeadSelector_m {
    color: #272626;
}

.phoneInput {
    border: none;
    outline: none;
}

.inputInfoTextCell {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
}

.btnCompare {
    display: inline-block;
    font-family: 'yg-jalnan', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    color: #333;
    margin: 35px auto 0;
    font-weight: 700;
    text-align: center;
    border-radius: 60px;
    padding: 20px 60px;
    background: #ffde00;
    border: none;
    min-width: 420px;
    max-width: 580px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.5px;
}

.btnCompare:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #ffc107;
}

.btnCompare::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btnCompare:hover::before {
    width: 600px;
    height: 600px;
}

.btnViewPolicy {
    display: inline-block;
    margin-left: 10px;
    color: #6841fe;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    background: transparent;
    padding: 0;
}

.btnViewPolicy:hover {
    color: #764ba2;
}

.checkMain {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
    cursor: pointer;
}

/* Car Images */
.car01 {
    margin-top: -40px;
}

.car01 img {
    width: 100%;
    display: block;
}

/* Loan Name */
.loan-name img {
    width: 100%;
    display: block;
}

/* About Area */
.about-area-2 {
    overflow: hidden;
    background: #defbf9 !important;
    padding-top: 70px;
}

/* Event Label Design with CSS3 */
.event-label-wrapper {
    display: inline-block;
    margin: 20px 0;
}

.event-label {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6841fe 0%, #8e44ff 100%);
    border-radius: 35px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(104, 65, 254, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.event-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(104, 65, 254, 0.4);
}

.event-label .event-number {
    background: #fff;
    color: #6841fe;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'yg-jalnan', sans-serif;
    letter-spacing: 1px;
    position: relative;
}

.event-label .event-title {
    color: #fff;
    padding: 12px 30px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'yg-jalnan', sans-serif;
    letter-spacing: -0.5px;
}

/* EVENT 01 - 자동차보험 */
.event-label-1 {
    background: linear-gradient(135deg, #6841fe 0%, #8e44ff 100%);
}

.event-label-1 .event-number {
    background: #fff;
    color: #6841fe;
}

/* EVENT 02 - 운전자보험 */
.event-label-2 {
    background: linear-gradient(135deg, #00d2d3 0%, #00b4d8 100%);
}

.event-label-2 .event-number {
    background: #fff;
    color: #00b4d8;
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .event-label-wrapper {
        display: block;
        text-align: center;
        margin: 15px 0;
    }
    
    .event-label {
        transform: scale(0.85);
        display: inline-flex;
    }
    
    .event-label .event-number {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .event-label .event-title {
        padding: 10px 25px;
        font-size: 18px;
    }
}

/* 구형 eventlabel 클래스 제거 */
.eventlabel {
    display: none;
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 24px !important;
    margin-bottom: 10px;
}

.feature-list li i {
    color: #000 !important;
    background: #000 !important;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    width: 14px !important;
    height: 14px !important;
    margin-top: -5px;
    margin-right: 10px;
}

.clock {
    font-size: 14px;
    letter-spacing: -1px;
    margin: 8px 20px;
}

/* Feature Card Widget */
.feature-card-widget-6 {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card-widget-r {
    position: relative;
}

.feature-card-widget-r img {
    max-width: 100%;
    display: inline-block;
    margin: 0 auto;
}

.deco_check {
    margin-top: -5px !important;
    width: 34px;
}

.coupon {
    max-width: 80% !important;
}

.coupon_description {
    font-size: 24px;
}

/* Customize Card Area */
.customize-card-area {
    overflow: hidden;
    background: #444349 !important;
}

/* Override bg_disable when used with customize-card-area */
.customize-card-area.bg_disable {
    background: #444349 !important;
}

#card_area_animation {
    background: #f5f7fa !important;
}

/* Card Image Shape Positions */
.customize-card-area .card-img .shape-1 {
    top: 125px;
    z-index: 3;
    left: 0;
}

.customize-card-area .card-img .shape-2 {
    top: 120px;
    left: 57px;
    z-index: 2;
}

.customize-card-area .card-img .shape-3 {
    top: 0;
    left: 100px;
    z-index: 1;
}

/* Text colors for dark background */
.customize-card-area h2,
.customize-card-area h3,
.customize-card-area h4,
.customize-card-area p {
    color: #333 !important;
}

.customize-card-area .section-title h2,
.customize-card-area .section-title h3,
.customize-card-area .section-title p {
    color: #333 !important;
}

.customize-card-area .deco_subtitle {
    color: #333 !important;
}

/* Feature card text on dark background */
.customize-card-area .text-center {
    color: #333 !important;
}

.bg_disable {
    background: #f8f9fa;
}

.deco_subtitle {
    font-size: 24px;
}

.t_deco {
    color: #fde803 !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.t_deco:after {
    content: "";
    position: absolute;
    top: -20px;
    left: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #000;
    display: inline-block;
    background: #f0bc42;
}

/* Form Background Section */
/* Form Background Section */
.form_bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    display: block;
    position: relative;
    overflow: hidden;
}

.form_bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,149.3C960,171,1056,213,1152,213.3C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

/* Notice Area */
.noticeArea {
    width: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0 auto;
    padding: 75px 0;
}

.noticeArea .titleCell {
    font-size: 36px;
    color: #1f1f1f;
    font-weight: 800;
    margin-bottom: 20px;
}

.noticeArea .titleCell img {
    vertical-align: middle;
    margin-right: 10px;
}

.noticeArea ul {
    list-style: none;
    padding: 0;
}

.noticeArea ul li {
    font-size: 18px;
    color: #515151;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.noticeArea .titleCell_01 {
    font-size: 18px;
    color: #ff3636;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.noticeArea .check {
    font-size: 16px;
    color: #555;
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.6;
}

/* Side Form */
.sideForm {
    position: fixed;
    top: 150px;
    right: 30px;
    width: 320px;
    max-height: calc(100vh - 200px);
    padding: 0;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 999;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sideForm:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

/* 사이드 폼 내부 폼 요소 */
.sideForm .form-control {
    background: rgba(255,255,255,1);
    border: 2px solid #fde803;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sideForm .form-control::placeholder {
    color: #999;
}

.sideForm .form-control:focus {
    background: #fff;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(253, 232, 3, 0.3);
    transform: scale(1.02);
}

.sideForm .form-label {
    color: #495057;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.sideForm .privacy-agreement-box {
    background: rgba(255,255,255,0.95);
    border: none;
    padding: 10px;
    border-radius: 8px;
}

.sideForm .privacy-agreement-box .form-check {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sideForm .privacy-agreement-box .form-check-input {
    margin-bottom: 8px;
}

.sideForm .privacy-agreement-box .form-check-label {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    width: 100%;
}

.sideForm .btn-outline-light {
    border: 1px solid #6841fe;
    color: #6841fe;
    background: #fff;
    font-size: 11px;
    padding: 4px 12px;
    font-weight: 500;
    width: 100%;
}

.sideForm .btn-outline-light:hover {
    background-color: #6841fe;
    border-color: #6841fe;
    color: #fff;
}

.sideForm.on {
    position: fixed;
    top: 150px;
    right: 30px;
    animation: slideIn 0.5s ease-out;
}

/* Animation for side form */
@keyframes slideIn {
    from {
        right: -350px;
        opacity: 0;
    }
    to {
        right: 30px;
        opacity: 1;
    }
}

.sideForm .titleCell {
    font-size: 20px;
    color: #fff;
    font-family: 'yg-jalnan', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
    padding: 15px 15px 10px;
    margin-bottom: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.sideForm .titleCell.text-24 {
    font-size: 20px;
}

.sideForm .titleCell > span {
    color: #fde803;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: block;
    margin-top: 2px;
    font-size: 24px;
}

.sideForm .titleCell > span.text-32 {
    font-size: 24px;
}

.sideForm .formCell {
    width: 100%;
    padding: 15px 20px 20px 20px;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 400px);
}

/* Scrollbar styling for formCell */
.sideForm .formCell::-webkit-scrollbar {
    width: 6px;
}

.sideForm .formCell::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sideForm .formCell::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.sideForm .formCell::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.sideForm .formCell table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 15px;
}

.sideForm .formCell table tr {
    display: block;
    margin-bottom: 15px;
}

.sideForm .formCell table th {
    display: block;
    width: 100%;
    font-weight: 600;
    color: #495057;
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
    padding: 0;
}

.sideForm .formCell table td {
    display: block;
    width: 100%;
    padding: 0;
}

.sideForm .formCell table td input,
.sideForm .formCell .form_control {
    width: 100%;
    font-size: 16px;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.sideForm .formCell table td input:focus,
.sideForm .formCell .form_control:focus {
    border-color: #6841fe;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(104, 65, 254, 0.1);
}

.sideForm .formCell table td input::placeholder,
.sideForm .formCell .form_control::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

.sideForm .privacyChkCell {
    font-size: 12px;
    margin: 10px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    line-height: 1.5;
}

.sideForm .privacyChkCell label {
    color: #495057;
    font-weight: 500;
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.sideForm .privacyChkCell label:hover {
    color: #6841fe;
}

.sideForm .privacyChkCell .checkMain {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    accent-color: #6841fe;
    cursor: pointer;
}

.sideForm .btnViewPolicy {
    display: inline-block;
    margin-left: 8px;
    color: #6841fe;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    background: transparent;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sideForm .btnViewPolicy:hover {
    background: rgba(104, 65, 254, 0.1);
    color: #764ba2;
}

.sideForm .btnApply {
    display: flex;
    font-family: 'yg-jalnan', 'Noto Sans KR', sans-serif;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    font-size: 16px;
    color: #333;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding: 14px 25px;
    background-color: #ffde00;
    margin: 15px auto;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sideForm .btnApply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #ffc107;
}

.sideForm .btnApply::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sideForm .btnApply:hover::before {
    width: 400px;
    height: 400px;
}

.sideForm .btnApply span {
    position: relative;
    z-index: 1;
}

/* Form Control */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #dee2e6;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:hover {
    border-color: #adb5bd;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #6841fe;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(104, 65, 254, 0.15);
}

/* Form Select */
.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 2px solid #dee2e6;
    border-radius: 0.25rem;
    appearance: none;
}

.form-select:hover {
    border-color: #adb5bd;
}

.form-select:focus {
    border-color: #6841fe;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(104, 65, 254, 0.15);
}

/* Privacy Agreement Box */
.privacy-agreement-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #6841fe;
}

.privacy-agreement-box .form-check {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.privacy-agreement-box .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #6841fe;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 8px;
}

.privacy-agreement-box .form-check-input:checked {
    background-color: #6841fe;
    border-color: #6841fe;
}

.privacy-agreement-box .form-check-label {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    white-space: nowrap;
}

.privacy-agreement-box .btn-outline-primary {
    border-color: #6841fe;
    color: #6841fe;
    flex-shrink: 0;
    padding: 2px 8px;
    font-size: 12px;
    white-space: nowrap;
}

.privacy-agreement-box .btn-outline-primary:hover {
    background-color: #6841fe;
    border-color: #6841fe;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .privacy-agreement-box {
        padding: 15px;
    }
    
    .privacy-check-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .privacy-check-wrapper .d-flex {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .privacy-agreement-box .form-check-input {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .privacy-agreement-box .form-check-label {
        font-size: 13px;
        white-space: nowrap;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .btn-privacy-mobile {
        font-size: 12px !important;
        padding: 6px 16px !important;
        margin-left: 0 !important;
        width: 100% !important;
        margin-top: 0 !important;
        display: block !important;
    }
}

/* Bootstrap Button Styles */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, 
                border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal.show {
    display: block;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

.wow {
    visibility: visible !important;  /* wow.js가 로드되지 않을 경우를 위해 visible로 설정 */
    animation-duration: 1s;
    animation-fill-mode: both;
}

.wow.animated {
    visibility: visible !important;
}

/* wow.js가 활성화된 경우에만 숨김 처리 */
.wow:not(.animated) {
    opacity: 1 !important;
    visibility: visible !important;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.fadeIn {
    animation-name: fadeIn;
}

/* Animation Delays */
[data-wow-delay="0.1s"] {
    animation-delay: 0.1s;
}

[data-wow-delay="0.3s"] {
    animation-delay: 0.3s;
}

/* Header and Navigation Styles */
.header {
    position: relative;
    z-index: 999;
    background: #fff;
}

.header-menu {
    position: relative;
    background: #fff;
    transition: all 0.3s ease;
}

.header-menu.navbar_fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: #fff;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.sticky_logo {
    position: relative;
}

.sticky_logo .main {
    display: inline-block;
}

.sticky_logo .sticky {
    display: none;
}

/* When header is fixed/sticky */
.header-menu.navbar_fixed .navbar .sticky_logo .main {
    display: none !important;
}

.header-menu.navbar_fixed .navbar .sticky_logo .sticky {
    display: inline-block !important;
}

/* Logo aspect ratio fixes */
.sticky_logo img.main,
.sticky_logo img.sticky {
    height: 45px !important;
    width: 283px !important;
    object-fit: contain;
}

/* Mobile logo styling */
@media (max-width: 767px) {
    .sticky_logo img.main,
    .sticky_logo img.sticky {
        height: 32px !important;
        width: auto !important;
        max-width: 200px !important;
        object-fit: contain;
    }
    
    .navbar-brand {
        max-width: 60%;
    }
}

/* Sticky header element */
#sticky {
    position: relative;
    transition: all 0.3s ease;
}

#sticky.stick {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation Menu */
.navbar-nav {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6841fe;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

/* Navbar Toggler (Mobile Menu) */
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 2px solid #6841fe;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
    display: none;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(104, 65, 254, 0.25);
}

/* Hamburger Menu Icon */
.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 20px;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #6841fe;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Hamburger X (Close) Animation */
.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.hamburger-cross {
    display: none;
}

/* Navbar Collapse */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 0 20px 20px 20px;
        z-index: 1000;
    }
    
    .navbar-collapse.collapse:not(.show) {
        display: none;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
        margin-top: 0 !important;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        font-weight: 600;
    }
    
    .navbar-nav .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f8f9fa;
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .navbar-nav .dropdown-item {
        padding: 10px 30px;
        border-bottom: 1px solid #e0e0e0;
    }
}

/* PC Navigation Height Adjustment */
@media (min-width: 992px) {
    .header-menu-4 {
        padding: 8px 0;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 15px;
    }
}

/* Navbar Collapse */
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

/* Additional Bootstrap Components */
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.me-4 { margin-right: 1.5rem !important; }

/* Theme Button Styles */
.theme-btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    height: 50px;
    border-radius: 4px;
    z-index: 1;
    background-color: #6841fe;
    padding: 0 35px;
    overflow: hidden;
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background-color: #5631de;
    color: #fff;
    text-decoration: none;
}

/* Additional Form Styles */
input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus {
    outline: none;
    border-color: #6841fe;
}

select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background: #2c2c2c;
    color: #999;
    padding: 40px 0 20px;
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
}

.footer.footer-1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.copyright {
    padding: 25px 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.companyInfoCell {
    color: #bdc3c7;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}

.companyInfoCell .col {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}

.companyInfoCell .col > span {
    font-weight: 700;
    color: #ecf0f1;
    padding-left: 15px;
}

.companyInfoCell .col > span:first-child {
    padding: 0;
}

.companyInfoCell p {
    color: #95a5a6;
    margin-top: 10px;
}

/* Privacy button styles */
.btnPrivacy a,
.btnPrivacy2 a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(52, 152, 219, 0.1);
    display: inline-block;
}

.btnPrivacy a:hover,
.btnPrivacy2 a:hover {
    background: rgba(52, 152, 219, 0.2);
    color: #5dade2;
}

.btnPrivacy2 {
    border: 1px solid #3498db !important;
    border-radius: 20px;
    padding: 2px;
}

/* Logo cell */
.logoCell img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logoCell img:hover {
    opacity: 1;
}

/* Responsive footer */
@media (max-width: 991px) {
    .companyInfoCell {
        text-align: center;
    }
    
    .logoCell img {
        max-width: 120px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .companyInfoCell .col {
        display: block;
        margin: 5px 0;
    }
    
    .btnPrivacy2 {
        margin-bottom: 15px;
    }
    
    .copyright {
        padding: 20px 15px;
    }
}

/* Additional Transitions */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

/* Z-index Management */
.modal { z-index: 1050; }
.modal-backdrop { z-index: 1040; }
.header-menu.navbar_fixed { z-index: 999; }
#sticky.stick { z-index: 999; }
.dropdown-menu { z-index: 1000; }

/* Utility Classes */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }
.bg-white { background-color: #fff !important; }
.saas-pricing-area { padding: 80px 0; }
.soundonly { display: none; }

/* Hidden and Show Classes */
.hidden { display: none !important; }
.show { display: block !important; }
.invisible { visibility: hidden !important; }
.visible { visibility: visible !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Position Utilities */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-visible { overflow: visible !important; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .mtext-26 {
        font-size: 28px;
        line-height: 30px !important;
        margin-bottom: 15px !important;
    }
    
    .mtext-24 {
        font-size: 20px;
        line-height: 30px !important;
        margin-bottom: 0px !important;
        font-family: 'Noto Sans KR', sans-serif;
    }
    
    .main-ts {
        font-size: 30px !important;
        font-weight: 600;
        line-height: 38px;
        letter-spacing: -0.02em;
    }
    
    .banner-area-5 {
        background-position: -110%;
        padding-top: 30px;
    }
    
    .person-img {
        margin-left: 0;
    }
    
    .expert-card-grid {
        grid-template-columns: 1fr;
    }
    
    .text-24 {
        font-size: 14px !important;
    }
    
    .text-26 {
        font-size: 18px;
    }
    
    .text-30 {
        font-size: 20px !important;
    }
    
    .text-32 {
        font-size: 22px !important;
    }
    
    .text-34 {
        font-size: 24px !important;
    }
    
    .text-50 {
        font-size: 30px !important;
        letter-spacing: -2px;
    }
    
    .form_bg {
        padding: 40px 15px;
    }
    
    .mainFormArea {
        padding: 30px 20px;
        border-radius: 20px;
        width: 100%;
    }
    
    .mainFormArea.row {
        margin: 0;
    }
    
    .mainTextCell {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .mainTextCell.text-26 {
        font-size: 26px !important;
    }
    
    .mainTextCell br {
        display: inline;
    }
    
    .mtext-26 {
        font-size: 26px !important;
    }
    
    .mtext-24 {
        font-size: 20px !important;
    }
    
    .subTextCell {
        font-size: 18px;
        margin: 15px 0 20px;
        padding: 0 10px !important;
    }
    
    .mainFormArea .inputWrap {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 15px auto;
        padding: 0;
        background: transparent;
        border: none;
    }
    
    .mainFormArea .inputWrap.w-100 {
        margin-top: 20px !important;
    }
    
    .mainFormArea .inputWrap .form-control {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
        border: 2px solid #e9ecef;
        background: #fff;
    }
    
    .mainFormArea .inputWrap .phoneHeadSelector.mselect {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
        border: 2px solid #e9ecef;
        background: #fff;
    }
    
    .mainFormArea .inputWrap .phoneInput {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
        border: 2px solid #e9ecef;
        background: #fff;
    }
    
    .mainFormArea .inputWrap input[type="text"]:focus,
    .mainFormArea .inputWrap select:focus {
        border-color: #6841fe;
        outline: none;
    }
    
    .btnCompare.mbt {
        font-size: 16px !important;
        width: 100% !important;
        max-width: 100%;
        min-width: auto;
        padding: 18px 30px;
        margin: 20px auto 0 !important;
        display: block !important;
        border-radius: 50px;
    }
    
    .inputInfoTextCell {
        font-size: 13px;
        text-align: center;
        margin: 10px 0;
    }
    
    .inputInfoTextCell.text-14 {
        font-size: 14px !important;
    }
    
    .btnViewPolicy.btnViewPolicy_m {
        font-size: 12px !important;
        padding: 2px 8px;
        margin-left: 5px;
    }
    
    /* 모바일 전용 헬퍼 클래스 */
    .text-12 {
        font-size: 12px !important;
    }
    
    .text-14 {
        font-size: 14px !important;
    }
    
    .text-16 {
        font-size: 16px !important;
    }
    
    .text-26 {
        font-size: 26px !important;
    }
    
    .py-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .mt-2 {
        margin-top: 0.5rem !important;
    }
    
    .mt-3 {
        margin-top: 1rem !important;
    }
    
    .w-auto {
        width: auto !important;
    }
    
    .w-100 {
        width: 100% !important;
    }
    
    .g-0 {
        gap: 0 !important;
    }
    
    /* Row and Column adjustments for mobile */
    .mainFormArea .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    .mainFormArea .col-3,
    .mainFormArea .col-9,
    .mainFormArea .col-12 {
        padding-right: 0;
        padding-left: 0;
    }
    
    /* 모바일 mt_color8 스타일 */
    .mt_color8 {
        color: #01a561 !important;
        font-weight: 700;
    }
    
    .sideForm {
        display: none;
    }
    
    .noticeArea {
        padding: 0 0 !important;
    }
    
    .noticeArea .titleCell {
        font-size: 24px;
        text-align: center;
    }
    
    .noticeArea ul li {
        font-size: 13px;
    }
    
    .noticeArea .titleCell_01 {
        font-size: 14px;
    }
    
    .noticeArea .check {
        font-size: 14px;
    }
    
    .list-unstyled li {
        font-size: 14px !important;
        letter-spacing: -1px;
        margin-bottom: 0 !important;
    }
    
    .list-unstyled li i {
        width: 8px !important;
        height: 8px !important;
        margin-top: -3px;
    }
    
    .feature-card-widget-6 {
        padding: 30px 20px;
    }
    
    .eventlabel {
        max-width: 50% !important;
    }
    
    .coupon {
        max-width: 80% !important;
    }
    
    .deco_subtitle {
        font-size: 24px !important;
        margin-bottom: 40px;
    }
    
    .t_deco:after {
        top: -15px;
        left: 10px;
        width: 10px;
        height: 10px;
    }
    
    .btnCompare {
        font-size: 24px !important;
    }
    
    .car01 img {
        width: 100%;
    }
    
    .border-bottom-dark {
        border: none !important;
    }
    
    .mainFormWrap {
        display: block;
    }
    
    .mainFormArea .inputWrap {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 30px;
        margin-bottom: 20px;
        background-color: #fff;
    }
}

/* Customize Card Area Styles */
.customize-card-area {
    overflow: hidden;
    background: #f5f7fa !important;
    position: relative;
}

.customize-card-area.bg_disable {
    background: #f5f7fa !important;
}

.bg_disable {
    background-color: #e8ebef !important; /* 배경과 텍스트 대비 개선 */
}

/* Padding classes */
.pt-lg-125 {
    padding-top: 125px;
}

.pb-lg-140 {
    padding-bottom: 140px;
}

.pt-105 {
    padding-top: 105px;
}

.pb-115 {
    padding-bottom: 115px;
}

@media (max-width: 991px) {
    .pt-lg-125 {
        padding-top: 105px;
    }
    
    .pb-lg-140 {
        padding-bottom: 115px;
    }
}

/* Section title styles */
.customize-card-area .section-title {
    margin-bottom: 35px;
}

.customize-card-area .deco_subtitle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Text decoration styles */
.customize-card-area .t_deco {
    background: #f0f0f0;
    color: inherit;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}

/* Title font style */
.customize-card-area .title_font {
    font-family: 'yg-jalnan', sans-serif;
    font-size: 48px;
    line-height: 1.2;
}

/* Main title style */
.customize-card-area .main-ts {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

/* Text sizes */
.text-30 {
    font-size: 30px !important;
}

.text-26 {
    font-size: 26px !important;
}

.text-24 {
    font-size: 24px !important;
}

/* Letter spacing */
.ls-1 {
    letter-spacing: -1px;
}

/* Font weights */
.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

/* Color classes */
.customize-card-area .mt_color5 {
    color: #666 !important; /* 대비 개선: 기존 #999에서 변경 */
}

.customize-card-area .mt_color6 {
    color: #b8860b !important; /* 대비 개선: 기존 #fde803에서 변경 - 진한 금색 */
}

.customize-card-area .mt_color7 {
    color: #005f45 !important; /* 대비 개선: WCAG AA 기준 충족 */
}

/* Feature card widget */
.customize-card-area .feature-card-widget-r {
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.customize-card-area .feature-card-widget-r .card-content {
    text-align: center;
}

.customize-card-area .feature-card-widget-r img {
    max-width: 100%;
    height: auto;
}

/* Text color overrides for light background */
.customize-card-area h2,
.customize-card-area h3 {
    color: #1f1f1f !important;
}

.customize-card-area p.text-center.text-26.fw-700 {
    color: #333 !important;
}

.customize-card-area h3.mt_color5 {
    color: #666 !important; /* 대비 개선: 기존 #999에서 변경 */
}

.customize-card-area .text-center {
    text-align: center !important;
}

/* Margin utilities */
.mb-35 {
    margin-bottom: 35px !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-sm-0 {
    margin-top: 0 !important;
}

@media (min-width: 576px) {
    .mt-sm-0 {
        margin-top: 0 !important;
    }
}

/* Column spacing */
.pe-lg-0 {
    padding-right: 0;
}

@media (min-width: 992px) {
    .pe-lg-0 {
        padding-right: 0 !important;
    }
}

/* Shape positioning for card area */
.customize-card-area .shape {
    position: absolute;
}

.customize-card-area .shape1 {
    top: 0;
    right: 0;
}

.customize-card-area .shape2 {
    bottom: 0;
    left: 0;
}

/* Text alignment utilities */
.text-center {
    text-align: center !important;
}

/* Insurance Compare Button Styles */
.insurance-compare-btn-wrapper {
    display: inline-block;
    margin: 20px auto;
}

.insurance-compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    min-width: 300px;
}

.insurance-compare-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

.insurance-compare-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.insurance-compare-btn .btn-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.insurance-compare-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.insurance-compare-btn .btn-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.insurance-compare-btn .btn-title {
    font-size: 22px;
    font-weight: 700;
    font-family: 'yg-jalnan', sans-serif;
}

.insurance-compare-btn .btn-arrow {
    font-size: 20px;
    margin-left: auto;
    animation: arrowMove 1s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.insurance-compare-btn .btn-highlight {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.insurance-compare-btn:hover .btn-highlight {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .insurance-compare-btn {
        padding: 15px 25px;
        min-width: 260px;
    }
    
    .insurance-compare-btn .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .insurance-compare-btn .btn-subtitle {
        font-size: 12px;
    }
    
    .insurance-compare-btn .btn-title {
        font-size: 18px;
    }
    
    .insurance-compare-btn .btn-content {
        gap: 15px;
    }
}

.text-sm-start {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-start {
        text-align: left !important;
    }
}

/* Additional Mobile Styles */
@media (max-width: 767px) {
    .d-block.d-md-none {
        display: block !important;
    }
    
    .d-none.d-md-block {
        display: none !important;
    }
    
    .customize-card-area .main-ts {
        font-size: 32px;
    }
    
    .customize-card-area .title_font {
        font-size: 36px;
    }
    
    .text-30 {
        font-size: 24px !important;
    }
    
    .text-26 {
        font-size: 20px !important;
    }
    
    .text-24 {
        font-size: 18px !important;
    }
}

@media (min-width: 768px) {
    .d-block.d-md-none {
        display: none !important;
    }
    
    .d-none.d-md-block {
        display: block !important;
    }
}