/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #1e3a8a;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 100px;
    position: relative;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 30px);
    left: -20px;
    transform: translateY(-10px);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    padding: 20px;
    gap: 0;
    justify-content: flex-start;
    min-width: 600px;
    max-width: 800px;
}

.nav-menu:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-column {
    flex: 1;
    min-width: 150px;
    padding: 0 20px;
}

.dropdown-column:first-child {
    padding-left: 0;
}

.dropdown-column:last-child {
    padding-right: 0;
}

.dropdown-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3b82f6;
}

.dropdown-link {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: #f9fafb;
    color: #3b82f6;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e3a8a;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.damage-relief-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.damage-relief-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.damage-relief-btn:hover::before {
    left: 100%;
}

.damage-relief-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252, #e53935);
}

.consultation-btn {
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
}

.consultation-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* PC 버전에서 모바일 메뉴 숨기기 */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
    }
    
    .header-buttons {
        display: flex !important;
    }
    
    .mobile-header-buttons {
        display: none !important;
    }
}


.hamburger-line {
    width: 100%;
    height: 3px;
    background: #1e3a8a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.15s ease-in-out, opacity 0.15s ease-in-out;
    opacity: 0;
}

/* 모바일에서만 모바일 메뉴 표시 */
@media (max-width: 768px) {
    .mobile-menu {
        display: block !important;
        visibility: visible !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
        z-index: 1000 !important;
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height 0.15s ease-in-out, opacity 0.15s ease-in-out !important;
        opacity: 0 !important;
    }
    
    .mobile-menu.active {
        max-height: 400px !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* 더 강력한 선택자로 모바일 메뉴 활성화 */
@media (max-width: 768px) {
    body .mobile-menu.active {
        max-height: 400px !important;
        opacity: 1 !important;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
}

.mobile-nav-category {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.mobile-nav-category:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-nav-category h3,
.mobile-nav-category-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid #3b82f6;
    cursor: pointer;
    user-select: none;
    position: relative;
    text-decoration: none;
    display: block;
}

.mobile-nav-category-title:hover {
    color: #2563eb;
}

.mobile-nav-category h3::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mobile-nav-category.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.mobile-nav-category .mobile-nav-link {
    display: none;
    padding-left: 15px;
}

.mobile-nav-category.active .mobile-nav-link {
    display: block;
}

.mobile-nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 0;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #1e3a8a;
}

.mobile-language {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-weight: 500;
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* 점 패턴 완전 제거 */
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 80px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-left" width="12" height="12" patternUnits="userSpaceOnUse"><circle cx="6" cy="6" r="1.5" fill="%23ffffff" opacity="0.8"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-left)"/></svg>') repeat;
}

.hero-pattern::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 60px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-right" width="12" height="12" patternUnits="userSpaceOnUse"><circle cx="6" cy="6" r="1.5" fill="%23ffffff" opacity="0.8"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-right)"/></svg>') repeat;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: white;
    clip-path: polygon(0% 100%, 0% 60%, 15% 50%, 30% 45%, 45% 40%, 60% 35%, 75% 30%, 90% 25%, 100% 20%, 100% 100%);
    z-index: 2;
}

.hero-waves::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #87CEEB;
    clip-path: polygon(0% 0%, 0% 100%, 15% 100%, 30% 100%, 45% 100%, 60% 100%, 75% 100%, 90% 100%, 100% 100%, 100% 0%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-waves::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 15%;
    width: 6px;
    height: 6px;
    background: transparent;
    border: 2px solid #87CEEB;
    border-radius: 50%;
}

.hero-waves .wave-circle {
    position: absolute;
    top: -5px;
    left: 25%;
    width: 6px;
    height: 6px;
    background: #87CEEB;
    border-radius: 50%;
}

/* 3층 파도 배경 */
.hero-wave-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* 1층 - 연한 진한 파란색 (왼쪽 상단에서 시작) */
.hero-wave-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #60a5fa;
    clip-path: polygon(0% 0%, 30% 0%, 50% 20%, 70% 10%, 90% 25%, 100% 15%, 100% 0%);
}

/* 2층 - 연한 파란색 (중간) */
.hero-wave-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #93c5fd;
    clip-path: polygon(0% 0%, 30% 0%, 50% 20%, 70% 10%, 90% 25%, 100% 15%, 100% 50%, 80% 60%, 60% 45%, 40% 55%, 20% 50%, 0% 40%);
}

/* 3층 - 연한 하늘색 (하단) */
.hero-wave-layer3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #bfdbfe;
    clip-path: polygon(0% 40%, 20% 50%, 40% 55%, 60% 45%, 80% 60%, 100% 50%, 100% 100%, 0% 100%);
}

.hero-bg-image {
    position: absolute;
    bottom: 0%;
    right: 25%;
    width: 30%;
    height: 70%;
    z-index: 3;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    min-height: 80vh;
    gap: 60px;
    padding-top: 60px;
    padding-left: 0;
    justify-content: flex-start;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    color: white;
    margin-top: 40px;
    text-align: left;
    transform: translateX(-200px);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.hero-description {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

/* Open Pay Solutions Section */
.open-pay-section {
    padding: 80px 0;
    background: #e0f2fe;
}

.open-pay-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.open-pay-header {
    margin-bottom: 30px;
}

.open-pay-subtitle {
    font-size: 22px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 900;
}

.open-pay-title {
    font-size: 32px;
    color: #1e40af;
    font-weight: 700;
    margin: 0;
}

.open-pay-illustration {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
    background: transparent;
}

.open-pay-image {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    outline: none;
}

.open-pay-description {
    font-size: 22px;
    font-weight: 900;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
    margin: 0 auto;
    white-space: normal;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
    position: relative;
}

.services::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.service-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* GOMPAY Services Section */
.gompay-services {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: right;
    position: relative;
    transition: transform 0.3s ease;
    min-height: 380px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:nth-child(1) { grid-column: 1 / 3; }
.service-card:nth-child(2) { grid-column: 3 / 5; }
.service-card:nth-child(3) { grid-column: 5 / 7; }
.service-card:nth-child(4) { grid-column: 2 / 4; }
.service-card:nth-child(5) { grid-column: 4 / 6; }

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

.service-icon {
    width: 72px;
    height: 72px;
    color: #374151;
    margin-bottom: 15px;
    margin-left: -20px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    text-align: left;
}

    .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 15px 0 20px 0 !important;
        display: block !important;
    }
    
    .gompay-services .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 15px 0 20px 0 !important;
        display: block !important;
    }
    
    .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 15px 0 20px 0 !important;
        display: block !important;
    }
    
    html body .gompay-services .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 15px 0 20px 0 !important;
        display: block !important;
    }
    
    html body .container .gompay-services .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 15px 0 20px 0 !important;
        display: block !important;
    }

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
    font-size: 14px;
}

.service-card h3 {
    text-align: left;
    margin-bottom: 15px;
}

.service-card p {
    text-align: left;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    padding: 8px 12px;
    background: #3b82f6;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 11px;
    margin-top: 5px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 40%;
    align-self: flex-end;
    white-space: nowrap;
}

.service-link:hover {
    background: #2563eb;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item-large {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.service-item-large h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.service-item-large p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 중복된 service-link 규칙 제거됨 */

/* Security Section */
.security {
    padding: 80px 0;
    background: #f8fafc url('배경3.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.security-item {
    background: transparent;
    padding: 20px;
    text-align: center;
}

.security-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.security-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.security-item p {
    color: #333333;
    line-height: 1.6;
    font-size: 14px;
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background: url('back.png?v=2') no-repeat center center;
    background-size: contain;
    color: white;
    position: relative;
}

.timeline::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 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"/></svg>') no-repeat center top;
    background-size: cover;
    opacity: 0.1;
}

.timeline::after {
    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 1200 800"><path d="M200,200 Q300,150 400,200 T600,200 T800,200 T1000,200" stroke="%2360a5fa" stroke-width="2" fill="none" opacity="0.3"/><circle cx="200" cy="200" r="3" fill="%2360a5fa" opacity="0.5"/><circle cx="400" cy="200" r="3" fill="%2360a5fa" opacity="0.5"/><circle cx="600" cy="200" r="3" fill="%2360a5fa" opacity="0.5"/><circle cx="800" cy="200" r="3" fill="%2360a5fa" opacity="0.5"/><circle cx="1000" cy="200" r="3" fill="%2360a5fa" opacity="0.5"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.2;
}

/* About Us Content Layout */
.about-us-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-us-text {
    flex: 1;
    padding-top: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-us-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.about-us-bg-image {
    max-width: 80%;
    height: auto;
    max-height: 267px;
    object-fit: contain;
    position: absolute;
    bottom: -200px;
    right: 20px;
    z-index: 2;
}

.timeline .section-title,
.timeline .section-subtitle {
    color: white;
    text-align: left;
    margin-bottom: 40px;
}

.timeline .section-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.timeline .section-subtitle {
    font-size: 28px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.timeline-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.timeline-content {
    display: flex;
    overflow: visible;
    margin-bottom: 30px;
    position: relative;
    gap: 30px;
    width: max-content;
    transition: transform 0.5s ease-in-out;
}

.timeline-navigation {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 20px;
    margin-left: 0;
}

.timeline-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.timeline-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.timeline-year {
    background: transparent;
    padding: 20px;
    min-width: 280px;
    flex-shrink: 0;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 200px;
    height: 2px;
    background: white;
    transform: translateY(-50%);
    opacity: 0.7;
}

.timeline-year:last-child::after {
    display: none;
}

.timeline-year h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    text-align: left;
}

.timeline-year ul {
    list-style: none;
}

.timeline-year li {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    padding: 5px 0;
}

.timeline-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* PC 버전에서만 네비게이션 버튼 표시 */
@media (min-width: 769px) {
    .timeline-navigation {
        display: flex !important;
    }
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: #60a5fa;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-arrow:hover {
    background: #3b82f6;
}

/* Footer */
.footer {
    background: white;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo h1 {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-info p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1e3a8a;
}

/* Page Title Section */
.page-title-section {
    background: #f8fafc;
    padding: 0;
    margin-top: 80px;
    text-align: center;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-title-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.title-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transform: scale(1.8);
    transform-origin: center;
}

/* Submenu Section */
.submenu-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.page-submenu {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.submenu-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.submenu-link:hover {
    color: #1e3a8a;
    background: #e0f2fe;
    border-color: #3b82f6;
}

.submenu-link.active {
    color: #1e3a8a;
    background: #e0f2fe;
    font-weight: 700;
    border-color: #3b82f6;
}

/* Definition Section */
.definition-section {
    padding: 80px 0;
    background: white;
}

.definition-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.definition-title {
    font-size: 18px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.definition-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.definition-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.definition-note {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    font-style: italic;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #e0f2fe;
    margin-bottom: 0;
}

.process-section:first-of-type {
    padding: 100px 0 40px 0;
}

.process-section:last-of-type {
    padding: 80px 0 100px 0;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 300px;
}

.process-step-with-bg {
    position: relative;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.15;
}

.step-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.process-step-with-bg .step-number,
.process-step-with-bg .step-content {
    position: relative;
    z-index: 2;
}

.process-step-with-bg .step-number {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-step-with-bg .step-content {
    text-align: center;
    background: transparent;
    padding: 20px;
    color: #1f2937;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-number {
    background: transparent;
    color: #1e3a8a;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.4;
}

/* Process Comparison */
.process-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    justify-items: center;
    align-items: start;
}

.process-illustration {
    text-align: center;
    margin: 10px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.process-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.process-description {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
    line-height: 1.4;
}

.process-column:first-child .process-description {
    color: #000000;
}

.process-column:last-child .process-description {
    color: #3b82f6;
}

.process-arrow {
    text-align: center;
    font-size: 72px;
    color: #3b82f6;
    font-weight: bold;
    margin: 10px 0 20px 0;
    line-height: 1;
}

.process-column {
    background: transparent;
    padding: 20px;
    border-radius: 0;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-column-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.process-column:first-child .process-column-title {
    color: #000000;
}

.process-column:last-child .process-column-title {
    color: #3b82f6;
}

.process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.flow-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    text-align: center;
    width: 100%;
}

.flow-arrow {
    color: #3b82f6;
    font-size: 20px;
    font-weight: bold;
}

/* Card Brands Section */
.card-brands-section {
    padding: 60px 0;
    background: #f8fafc;
}

.card-brands-content {
    max-width: 1000px;
    margin: 0 auto;
}

.card-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.card-brands-grid-single {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
}

.card-brand {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card-brand:hover {
    transform: translateY(-3px);
}

.card-brand-image {
    margin-bottom: 15px;
    text-align: center;
}

.card-image {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    border-radius: 4px;
}

.card-image-special {
    max-height: 200px;
    transform: scale(1.1);
}

.card-brand-text {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-top: 10px;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.card-brand-text-special {
    font-size: 14px;
    line-height: 1.1;
    min-height: 40px;
}

/* China Payment Common Section */
.china-payment-common-section {
    padding: 80px 0;
    background: #f8fafc;
}

.china-payment-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.china-payment-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.china-payment-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 60px;
}

/* China Payment Brands */
.china-payment-brands {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.china-brand {
    background: transparent;
    color: #1e3a8a;
    padding: 20px 30px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.china-brand:hover {
    transform: translateY(-3px);
}

.china-brand-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
}

.china-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
}

/* China Payment Features */
.china-payment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.china-feature-item {
    background: transparent;
    padding: 30px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.china-feature-item:hover {
    transform: translateY(-3px);
}

.china-feature-image-container {
    margin: 20px 0;
    text-align: center;
}

.china-feature-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    flex-shrink: 0;
    border: none;
    outline: none;
    box-shadow: none;
}

.china-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.china-feature-text {
    font-size: 13px;
    line-height: 1.5;
    color: #4a5568;
}

/* China Payment Sub-categories */
.china-payment-subcategories {
    padding: 80px 0;
    background: #ffffff;
}

.subcategory-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.subcategory-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.subcategory-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.subcategory-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.subcategory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3b82f6;
}

.subcategory-icon {
    margin-bottom: 20px;
}

.subcategory-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
}

.subcategory-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.subcategory-card-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

.subcategory-card.active {
    border-color: #3b82f6;
    background: #f0f9ff;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1), 0 4px 6px -2px rgba(59, 130, 246, 0.05);
}

.subcategory-card.active .subcategory-card-title {
    color: #1d4ed8;
}

/* Feature Number */
.feature-number {
    background: transparent;
    color: #3b82f6;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Process Images */
.process-images {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.process-image-container {
    text-align: center;
    max-width: 100%;
    overflow: visible;
    margin: 200px 0 200px 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.process-image {
    width: 800px !important;
    height: auto !important;
    max-width: none !important;
    border-radius: 0;
    box-shadow: none;
    border: none;
    outline: none;
    transform: scale(2.0) !important;
    transform-origin: center;
}

.process-image-placeholder {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
}

/* Step Description */
.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-top: 10px;
}

/* Risk Management Styles */
.risk-definition-content {
    max-width: 1000px;
    margin: 0 auto;
}

.definition-section {
    background: #e0f2fe;
    padding: 80px 0;
}

.risk-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    align-items: stretch;
}

.risk-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 280px;
    height: auto;
}

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

.risk-image-container {
    flex-shrink: 0;
    margin-right: 0;
    margin-bottom: 15px;
}

.risk-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
}

.risk-definition-text {
    font-size: 13px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Risk Feature Section */
.risk-feature-section {
    background: #e0f2fe;
    padding: 80px 0;
}

.risk-feature-content {
    max-width: 1000px;
    margin: 0 auto;
}

.risk-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.risk-feature-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 60px;
    text-align: center;
}

/* Certification Section */
.certification-section {
    background: white;
    padding: 80px 0;
}

.certification-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.certification-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.cert-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo {
    width: 360px;
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

.risk-image-container {
    text-align: center;
    margin: 30px 0;
}

.risk-image-placeholder {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
    margin: 20px 0;
}

.risk-definition-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin: 20px 0;
}

.certification-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cert-logo-placeholder {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    padding: 20px 30px;
    text-align: center;
    border-radius: 8px;
    color: #6b7280;
    font-size: 12px;
    min-width: 120px;
}

.risk-feature-list {
    max-width: 1000px;
    margin: 0 auto;
}

.risk-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.risk-feature-number {
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.risk-feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    flex: 1;
}

/* Service Content Section */
.service-content-section {
    padding: 60px 0;
    background: white;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 10px;
}

.service-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 40px;
}

/* Fee Table */
.fee-table-container {
    margin: 40px 0;
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fee-table th {
    background: #3b82f6;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.fee-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    color: #4a5568;
}

.fee-table td:nth-child(2),
.fee-table td:nth-child(3) {
    color: #000000;
    font-weight: 700;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:nth-child(even) {
    background: #f8fafc;
}

.fee-note {
    text-align: center;
    margin-top: 30px;
}

.fee-note p {
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

/* Process Table for Documents */
.process-table-container {
    max-width: 100%;
    margin: 0 auto;
    overflow-x: visible;
    width: 100%;
}

.process-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.process-table tr {
    border-bottom: none;
}

.process-table tr:last-child {
    border-bottom: none;
}

.process-number-cell {
    width: 80px;
    padding: 20px 15px;
    vertical-align: top;
    text-align: center;
}

.process-title-cell {
    padding: 20px 15px !important;
    vertical-align: top !important;
    text-align: left !important;
    width: 300px !important;
    min-width: 300px !important;
}

.process-desc-cell {
    padding: 20px 15px !important;
    vertical-align: top !important;
    text-align: left !important;
    min-width: 500px !important;
    width: auto !important;
}

.process-desc-cell:has(.process-link) {
    text-align: right !important;
}

.process-number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto;
}

.process-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #000000 !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.process-desc {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000000 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    text-align: left !important;
}

.process-link {
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s ease;
}

.process-link:hover {
    background: #2563eb;
}

.requirement-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    margin: 0 !important;
}

.requirement-column {
    padding: 20px !important;
    background: #f8fafc !important;
    border-radius: 6px !important;
    border-left: 4px solid #3b82f6 !important;
    text-align: left !important;
    min-width: 280px !important;
    width: 280px !important;
}

.requirement-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-bottom: 10px !important;
    padding-bottom: 5px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    text-align: left !important;
}

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

.requirement-list li {
    padding: 4px 0 !important;
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    position: relative !important;
    padding-left: 15px !important;
    text-align: left !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
}

.requirement-list li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.process-item:last-child {
    border-bottom: none;
}

.process-number {
    background: #e3f2fd;
    color: #1976d2;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.process-info {
    flex: 1;
}

.process-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.process-desc {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

.process-link {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    background: #e3f2fd;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #1976d2;
    display: inline-block;
    margin-top: 5px;
}

.process-link:hover {
    background: #1976d2;
    color: white;
}

/* Document Requirements */
.document-requirements {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.requirement-section {
    background: #f8fafc;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.requirement-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e2e8f0;
}

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

.requirement-list li {
    padding: 3px 0;
    color: #4a5568;
    font-size: 13px;
    position: relative;
    padding-left: 15px;
}

.requirement-list li::before {
    content: "•";
    color: #1976d2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Application Form */
.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #4a5568;
    background: white;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: #3b82f6;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #2563eb;
}

/* Damage Relief Page Styles */
.damage-relief-container {
    padding: 60px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.damage-relief-container .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.damage-relief-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.damage-relief-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.damage-relief-container p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
}

.damage-relief-container .text-sm {
    font-size: 0.875rem;
}

.damage-relief-container .text-lg {
    font-size: 1.125rem;
}

.damage-relief-container .text-3xl {
    font-size: 2rem;
}

.damage-relief-container .mb-4 {
    margin-bottom: 1rem;
}

.damage-relief-container .mb-6 {
    margin-bottom: 1.5rem;
}

.damage-relief-container .mb-8 {
    margin-bottom: 2rem;
}

.damage-relief-container .mb-12 {
    margin-bottom: 3rem;
}

.damage-relief-container .mt-12 {
    margin-top: 3rem;
}

.damage-relief-container .p-6 {
    padding: 1.5rem;
}

.damage-relief-container .p-8 {
    padding: 2rem;
}

.damage-relief-container .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.damage-relief-container .px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.damage-relief-container .px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.damage-relief-container .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.damage-relief-container .h-12 {
    height: 3rem;
}

.damage-relief-container .w-16 {
    width: 4rem;
}

.damage-relief-container .h-16 {
    height: 4rem;
}

.damage-relief-container .w-5 {
    width: 1.25rem;
}

.damage-relief-container .h-5 {
    height: 1.25rem;
}

.damage-relief-container .w-6 {
    width: 1.5rem;
}

.damage-relief-container .h-6 {
    height: 1.5rem;
}

.damage-relief-container .w-8 {
    width: 2rem;
}

.damage-relief-container .h-8 {
    height: 2rem;
}

.damage-relief-container .rounded-lg {
    border-radius: 0.5rem;
}

.damage-relief-container .rounded-full {
    border-radius: 9999px;
}

.damage-relief-container .rounded-md {
    border-radius: 0.375rem;
}

.damage-relief-container .border {
    border-width: 1px;
}

.damage-relief-container .border-blue-200 {
    border-color: #dbeafe;
}

.damage-relief-container .bg-blue-50 {
    background-color: #eff6ff;
}

.damage-relief-container .bg-blue-100 {
    background-color: #dbeafe;
}

.damage-relief-container .bg-blue-600 {
    background-color: #2563eb;
}

.damage-relief-container .bg-blue-700 {
    background-color: #1d4ed8;
}

.damage-relief-container .bg-white {
    background-color: #ffffff;
}

.damage-relief-container .bg-gray-800 {
    background-color: #1f2937;
}

.damage-relief-container .bg-gray-900 {
    background-color: #111827;
}

.damage-relief-container .text-blue-600 {
    color: #2563eb;
}

.damage-relief-container .text-blue-700 {
    color: #1d4ed8;
}

.damage-relief-container .text-blue-800 {
    color: #1e40af;
}

.damage-relief-container .text-blue-900 {
    color: #1e3a8a;
}

.damage-relief-container .text-gray-600 {
    color: #4b5563;
}

.damage-relief-container .text-gray-700 {
    color: #374151;
}

.damage-relief-container .text-gray-900 {
    color: #111827;
}

.damage-relief-container .text-white {
    color: #ffffff;
}

.damage-relief-container .border-gray-300 {
    border-color: #d1d5db;
}

.damage-relief-container .focus\:ring-2:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.damage-relief-container .focus\:ring-blue-500:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.damage-relief-container .focus\:border-transparent:focus {
    border-color: transparent;
}

.damage-relief-container .focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.damage-relief-container .hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.damage-relief-container .hover\:bg-gray-900:hover {
    background-color: #111827;
}

.damage-relief-container .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.damage-relief-container .shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.damage-relief-container .space-y-2 > * + * {
    margin-top: 0.5rem;
}

.damage-relief-container .space-y-4 > * + * {
    margin-top: 1rem;
}

.damage-relief-container .space-y-6 > * + * {
    margin-top: 1.5rem;
}

.damage-relief-container .space-x-2 > * + * {
    margin-left: 0.5rem;
}

.damage-relief-container .space-x-4 > * + * {
    margin-left: 1rem;
}

.damage-relief-container .space-x-8 > * + * {
    margin-left: 2rem;
}

.damage-relief-container .space-x-2 > * + * {
    margin-left: 0.5rem;
}

.damage-relief-container .grid {
    display: grid;
}

.damage-relief-container .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.damage-relief-container .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.damage-relief-container .gap-3 {
    gap: 0.75rem;
}

.damage-relief-container .gap-4 {
    gap: 1rem;
}

.damage-relief-container .flex {
    display: flex;
}

.damage-relief-container .inline-flex {
    display: inline-flex;
}

.damage-relief-container .items-center {
    align-items: center;
}

.damage-relief-container .items-start {
    align-items: flex-start;
}

.damage-relief-container .justify-center {
    justify-content: center;
}

.damage-relief-container .text-center {
    text-align: center;
}

.damage-relief-container .font-medium {
    font-weight: 500;
}

.damage-relief-container .font-semibold {
    font-weight: 600;
}

.damage-relief-container .font-bold {
    font-weight: 700;
}

.damage-relief-container .cursor-pointer {
    cursor: pointer;
}

.damage-relief-container .block {
    display: block;
}

.damage-relief-container .w-full {
    width: 100%;
}

.damage-relief-container .max-w-full {
    max-width: 100%;
}

.damage-relief-container .h-auto {
    height: auto;
}

.damage-relief-container .max-h-300 {
    max-height: 300px;
}

.damage-relief-container .w-4 {
    width: 1rem;
}

.damage-relief-container .h-4 {
    height: 1rem;
}

.damage-relief-container .w-5 {
    width: 1.25rem;
}

.damage-relief-container .h-5 {
    height: 1.25rem;
}

.damage-relief-container .w-6 {
    width: 1.5rem;
}

.damage-relief-container .h-6 {
    height: 1.5rem;
}

.damage-relief-container .w-8 {
    width: 2rem;
}

.damage-relief-container .h-8 {
    height: 2rem;
}

.damage-relief-container .w-16 {
    width: 4rem;
}

.damage-relief-container .h-16 {
    height: 4rem;
}

.damage-relief-container .mr-2 {
    margin-right: 0.5rem;
}

.damage-relief-container .mt-1 {
    margin-top: 0.25rem;
}

.damage-relief-container .pt-6 {
    padding-top: 1.5rem;
}

.damage-relief-container .text-blue-600 {
    color: #2563eb;
}

.damage-relief-container input[type="radio"] {
    accent-color: #2563eb;
}

.damage-relief-container .text-sm {
    font-size: 0.875rem;
}

.damage-relief-container .text-lg {
    font-size: 1.125rem;
}

.damage-relief-container .text-3xl {
    font-size: 2rem;
}

/* Mobile Responsive for Damage Relief */
@media (max-width: 768px) {
    .damage-relief-container h1 {
        font-size: 1.875rem;
    }
    
    .damage-relief-container .text-3xl {
        font-size: 1.875rem;
    }
    
    .damage-relief-container .grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .damage-relief-container .flex-col {
        flex-direction: column;
    }
    
    .damage-relief-container .space-y-4 > * + * {
        margin-top: 1rem;
    }
    
    .damage-relief-container .space-x-8 > * + * {
        margin-left: 0;
    }
    
    .damage-relief-container .sm\:flex-row {
        flex-direction: column;
    }
    
    .damage-relief-container .sm\:space-y-0 > * + * {
        margin-top: 1rem;
    }
    
    .damage-relief-container .sm\:space-x-8 > * + * {
        margin-left: 0;
    }
}

/* Popup Modal Styles */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
}

.popup-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #e2e8f0;
    color: #1e3a8a;
}

.popup-body {
    padding: 30px;
}

.popup-article-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.popup-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

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

.popup-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.popup-article-title {
    font-size: 1.09rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.4;
}

.popup-article-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
}

.popup-link-text {
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.popup-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.7rem;
    line-height: 1.5;
    word-break: break-all;
    transition: color 0.2s ease;
}

.popup-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.popup-divider {
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    margin: 20px 0;
    border-radius: 1px;
}

.popup-notice-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 20px 0;
    text-align: center;
}

.popup-notice-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
    text-align: left;
}

.popup-notice-content p {
    margin: 0 0 15px 0;
}

.popup-notice-content strong {
    font-weight: 700;
}

.popup-notice-content .highlight-red {
    color: #dc2626;
}

.popup-notice-content u {
    text-decoration: underline;
    text-decoration-color: #3b82f6;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    color: #1e40af;
    font-weight: 600;
}

.popup-notice-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.popup-notice-list li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.popup-notice-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.popup-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* 구비서류 안내 페이지 스타일 */

.service-tabs-section {
    padding: 30px 0 20px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.service-tab {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f8fafc;
    color: #64748b;
}

.service-tab:hover {
    background: #e2e8f0;
    color: #374151;
}

.service-tab.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.document-guide-section {
    padding: 60px 0;
    background: white;
}

.document-guide-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    margin-bottom: 10px;
}

.guide-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.guide-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #e2e8f0;
}

.process-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.process-row {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    border: 2px solid #0ea5e9;
    color: #0369a1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-line {
    width: 30px;
    height: 2px;
    background: #cbd5e1;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.step-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    flex: 2;
    text-align: right;
}

.go-button {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.go-button:hover {
    background: #2563eb;
}

.document-sections {
    display: flex;
    gap: 40px;
    margin-top: 15px;
    flex: 2;
}

.document-section {
    flex: 1;
}

.document-section h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e7eb;
}

.document-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-section li {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 3px 0;
    position: relative;
    padding-left: 15px;
}

.document-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9ca3af;
    font-weight: bold;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .service-tabs-section {
        padding: 20px 0 15px 0;
    }
    
    .service-tabs {
        flex-direction: row;
        gap: 8px;
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
        text-align: center;
        flex: 1;
        min-width: 0;
    }
    
    .document-guide-section {
        padding: 40px 0;
    }
    
    .guide-subtitle {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .process-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .process-row {
        padding: 15px 20px;
        min-width: 600px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .step-line {
        width: 20px;
        height: 2px;
        background: #cbd5e1;
        flex-shrink: 0;
    }
    
    .step-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        min-width: 0;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
    }
    
    .step-content p {
        text-align: right;
        font-size: 0.9rem;
        flex: 2;
        margin: 0;
    }
    
    .go-button {
        margin-left: 10px;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .document-sections {
        display: flex;
        gap: 20px;
        margin-top: 10px;
        min-width: 400px;
    }
    
    .document-section {
        flex: 1;
        min-width: 0;
    }
    
    .document-section h5 {
        font-size: 0.95rem;
    }
    
    .document-section li {
        font-size: 0.85rem;
    }
}

/* 서비스 신청 페이지 스타일 */
.service-application-section {
    padding: 60px 0;
    background: #f8fafc;
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.application-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    margin-bottom: 10px;
}

.application-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.application-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #e2e8f0;
}

.application-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    color: #374151;
    background: white;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 수수료 안내 페이지 모바일 반응형 */
@media (max-width: 768px) {
    .fee-info-section {
        padding: 40px 0;
    }
    
    .fee-tables {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .fee-table-container {
        min-width: 600px;
    }
    
    .fee-table {
        font-size: 0.9rem;
    }
    
    .fee-table th,
    .fee-table td {
        padding: 12px 8px;
        white-space: nowrap;
    }
}

/* 서비스 신청 페이지 모바일 반응형 */
@media (max-width: 768px) {
    .service-application-section {
        padding: 40px 0;
    }
    
    .application-subtitle {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .application-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
    }
}

.popup-btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.popup-btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.popup-btn-secondary {
    background: #6b7280;
    color: white;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.popup-btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-modal {
        padding: 10px;
    }
    
    .popup-content {
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 15px 20px;
    }
    
    .popup-title {
        font-size: 1.25rem;
    }
    
    .popup-article-info {
        align-items: flex-start;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .popup-thumbnail {
        width: 100px;
        height: 70px;
    }
    
    .popup-thumbnail-img {
        object-fit: cover;
    }
    
    .popup-article-title {
        font-size: 1.1rem;
    }
    
    .popup-link-text,
    .popup-link {
        font-size: 0.65rem;
    }
    
    .popup-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .popup-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Popup External Controls */
.popup-external-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 0 20px;
    width: 100%;
    max-width: 500px;
}

.popup-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ff6600;
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 700;
}

.popup-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #ff6600;
    cursor: pointer;
}

.popup-checkbox-text {
    font-weight: 700;
}

.popup-footer-btn {
    background: transparent;
    color: #ff6600;
    border: none;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: underline;
}

.popup-footer-btn:hover {
    color: #cc5200;
}

/* Mobile Responsive for Popup External Controls */
@media (max-width: 768px) {
    .popup-external-controls {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
        padding: 0 15px;
    }
    
    .popup-checkbox-label {
        justify-content: flex-start;
        font-size: 0.85rem;
    }
    
    .popup-footer-btn {
        width: auto;
        padding: 0;
    }
}

/* China Payment Section */
.china-payment-section {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.china-payment-section.hidden {
    display: none;
}

.china-payment-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.china-payment-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.china-payment-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.china-payment-submenu {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.china-submenu-link {
    background: white;
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.china-submenu-link:hover {
    background: #f8f9fa;
    color: #000;
    border-color: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* WeChat Pay Process Images - 2.5x scale */
.wechat-process-image {
    transform: scale(2.5) !important;
}

/* WeChat Pay Process Container - Adjust for scaled images */
.wechat-process-images {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
}

.wechat-process-image-container {
    max-width: 1000px !important;
    width: 100% !important;
    overflow: visible !important;
    padding: 40px 0 !important;
}

/* Privacy Policy Content */
.privacy-content {
    padding: 60px 0;
    background: #fff;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.privacy-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.privacy-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-text li {
    margin-bottom: 8px;
    font-size: 16px;
}

.privacy-text strong {
    color: #1e3a8a;
    font-weight: 600;
}

.effective-date {
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

/* Terms Content */
.terms-content {
    padding: 60px 0;
    background: #fff;
}

.terms-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.terms-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: center;
}

.terms-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.terms-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.terms-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-text li {
    margin-bottom: 8px;
    font-size: 16px;
}

.terms-text strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* China Payment Submenu Section */
.china-payment-submenu-section {
    padding: 20px 0;
    background: #f0f9ff;
    border-bottom: 1px solid #e2e8f0;
}

.china-payment-submenu-section .china-payment-submenu {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.china-payment-submenu-section .china-submenu-link {
    background: white;
    color: #1e3a8a;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.china-payment-submenu-section .china-submenu-link.active {
    background: #e3f2fd;
    color: #87ceeb;
    border-color: #87ceeb;
}

.china-payment-submenu-section .china-submenu-link:hover {
    background: #f8f9fa;
    color: #000;
    border-color: #e2e8f0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background: #2563eb;
}

.process-cta,
.feature-cta {
    text-align: center;
    margin-top: 40px;
}

/* Feature Section - Removed for risk page */

.feature-content {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 60px;
    text-align: center;
}

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

.feature-grid-3x2 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
}

.feature-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-grid-single-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item-vertical {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item-vertical:hover {
    transform: translateY(-3px);
}

.feature-image-container {
    margin: 20px 0;
    text-align: center;
}

.feature-item-vertical .feature-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    flex-shrink: 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item-with-image {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-content-left {
    flex: 1;
}

.feature-content-right {
    flex: 0 0 140px;
    text-align: center;
    background: transparent;
    padding: 0;
    margin: 0;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

/* abroadPay.html Feature 섹션 이미지 테두리 완전 제거 */
.feature-item-with-image .feature-content-right img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.feature-item:hover,
.feature-item-with-image:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    flex-shrink: 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.feature-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-item-text {
    font-size: 13px;
    line-height: 1.5;
    color: #4a5568;
}

.feature-item-image {
    margin: 20px 0;
    text-align: center;
}

.feature-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-header-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding: 20px;
        border-top: 1px solid #e2e8f0;
    }
    
    .mobile-damage-relief-btn {
        background: linear-gradient(135deg, #ff6b6b, #ee5a52);
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        transition: all 0.3s ease;
    }
    
    .mobile-damage-relief-btn:hover {
        background: linear-gradient(135deg, #ff5252, #e53935);
        transform: translateY(-1px);
    }
    
    .mobile-consultation-btn {
        background: #3b82f6;
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .mobile-consultation-btn:hover {
        background: #2563eb;
    }
    
    
    
    .hero {
        min-height: 70vh;
        padding: 20px 0;
        position: relative;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        min-height: auto;
        padding-top: 20px;
        padding-left: 0;
        justify-content: center;
        position: relative;
        z-index: 10;
    }
    
    .hero-text {
        max-width: 100%;
        order: 1;
        margin-top: 0;
        text-align: center;
        padding: 0 15px;
        transform: none;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .hero-title {
        font-size: 32px;
        white-space: normal;
        line-height: 1.2;
        margin-bottom: 20px;
        color: white;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.5;
    }
    
    .hero-illustration {
        order: 2;
        height: 300px;
        position: relative;
        z-index: 5;
    }
    
    .hero-bg-image {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        height: 70%;
        z-index: 5;
    }
    
    .bg-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    /* Open Pay Section Mobile */
    .open-pay-content {
        flex-direction: column;
        gap: 40px;
    }

    .open-pay-title {
        font-size: 24px;
    }

    .open-pay-description {
        font-size: 14px;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1;
    }
    
    .service-card {
        padding: 20px 15px;
        height: auto;
        min-height: 200px;
        position: relative;
        margin-bottom: 15px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .service-card p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .gompay-services .service-card p {
        margin-bottom: 50px;
    }
    
    .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 10px 0 15px 0 !important;
        display: block !important;
    }
    
    .gompay-services .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 10px 0 15px 0 !important;
        display: block !important;
    }
    
    .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 10px 0 15px 0 !important;
        display: block !important;
    }
    
    .service-card:nth-child(5) .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 10px 0 15px 0 !important;
        display: block !important;
    }
    
    html body .gompay-services .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 10px 0 15px 0 !important;
        display: block !important;
    }
    
    html body .container .gompay-services .service-card .service-divider {
        width: 100% !important;
        height: 1px !important;
        background: #4a5568 !important;
        margin: 10px 0 15px 0 !important;
        display: block !important;
    }
    
    @media (max-width: 768px) {
        html body .container .gompay-services .service-card .service-divider {
            width: 100% !important;
            height: 1px !important;
            background: #4a5568 !important;
            margin: 10px 0 15px 0 !important;
            display: block !important;
        }
    }
    
    .service-link {
        margin-top: 10px;
        position: absolute;
        bottom: 15px;
        right: 12px;
    }
    
    /* About Us Content Mobile Layout */
    .about-us-content {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 100px;
    }
    
    .about-us-text {
        text-align: center;
        padding-top: 0;
        order: 1; /* 텍스트를 먼저 배치 */
    }
    
    .about-us-image {
        order: 2; /* 이미지를 텍스트 다음에 배치 */
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-us-bg-image {
        max-width: 120% !important;
        height: auto !important;
        max-height: 400px !important;
        object-fit: contain !important;
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        z-index: 2 !important;
    }

    .timeline .section-title,
    .timeline .section-subtitle {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .timeline .section-title {
        font-size: 14px;
        font-weight: 600;
        color: white;
        margin-bottom: 8px;
    }
    
    .timeline .section-subtitle {
        font-size: 16px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 100px;
        line-height: 1.3;
    }
    
    .timeline {
        padding: 200px 0;
        min-height: 100vh;
        background-size: cover;
        background-position: center top;
    }
    
    .timeline-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        overflow: visible;
        margin-bottom: 15px;
        position: relative;
        width: 100%;
        transform: none;
    }
    
    .timeline-year {
        background: transparent;
        padding: 0;
        min-width: auto;
        flex-shrink: 0;
        position: relative;
        border-radius: 0;
        backdrop-filter: none;
    }
    
    .timeline-year::after {
        display: none;
    }
    
    .timeline-year h3 {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 10px;
        color: white;
        text-align: left;
    }
    
    .timeline-year ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .timeline-year li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
        color: white;
        font-weight: 400;
        padding: 0;
    }
    
    .timeline-navigation {
        display: none !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-info p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 60vh;
        padding: 15px 0;
    }
    
    .hero-content {
        padding-top: 15px;
        gap: 15px;
        justify-content: center;
        min-height: auto;
    }
    
    .hero-text {
        padding: 0 10px;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .hero-illustration {
        height: 250px;
    }
    
    .hero-bg-image {
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        height: 60%;
        z-index: 5;
    }
    
    /* Service Cards Mobile 480px */
    .service-card {
        padding: 15px 12px;
        height: auto;
        min-height: 180px;
        position: relative;
        margin-bottom: 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin-left: 0;
        margin-bottom: 8px;
    }
    
    .service-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .service-card p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Page Title Section Mobile */
    .page-title-section {
        padding: 0;
        height: 120px;
    }
    
    .title-image {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transform: scale(1.8);
        transform-origin: center;
    }
    
    .submenu-section {
        padding: 30px 0;
        background: white;
    }
    
    .page-submenu {
        gap: 20px;
    }
    
    .submenu-link {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    /* Definition Section Mobile */
    .definition-section {
        padding: 40px 0;
    }
    
    .definition-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .definition-text,
    .definition-note {
        font-size: 14px;
    }
    
    /* Feature Section Mobile */
    .feature-section {
        padding: 40px 0;
    }
    
    .feature-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-grid-3x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item-title {
        font-size: 18px;
    }
    
    .feature-item-text {
        font-size: 13px;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 60px 0;
        margin-bottom: 0;
    }
    
    .process-section:first-of-type {
        padding: 60px 0 20px 0;
    }
    
    .process-section:last-of-type {
        padding: 40px 0 60px 0;
    }
    
    .process-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .process-step-with-bg {
        padding: 15px;
        min-height: 300px;
    }
    
    .step-background {
        opacity: 0.1;
    }
    
    .process-step-with-bg .step-content {
        padding: 15px;
        background: transparent;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 14px;
    }
    
    .process-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-illustration {
        padding: 0;
        margin: 15px 0;
    }
    
    .process-image {
        max-height: 200px;
    }
    
    .process-description {
        font-size: 16px;
        margin: 10px 0;
    }
    
    .process-column-title {
        font-size: 20px;
    }
    
    .process-arrow {
        font-size: 20px;
        margin: 8px 0;
    }
    
    .card-brands-grid-single {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
    
    .card-brand {
        padding: 0;
    }
    
    .card-image {
        max-height: 120px;
    }
    
    .card-brand-text {
        font-size: 12px;
        min-height: 30px;
    }
    
    .card-brand-text-special {
        font-size: 10px;
        min-height: 30px;
    }
    
    .card-image-special {
        max-height: 130px;
        transform: scale(1.05);
    }
    
    .process-column {
        padding: 20px;
    }
    
    .feature-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item-with-image {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .feature-content-left,
    .feature-content-right {
        flex: none;
    }
    
    .feature-image {
        width: 100px;
        height: 100px;
    }
    
    .process-column-title {
        font-size: 16px;
    }
    
    .flow-item {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Card Brands Mobile */
    .card-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .card-brand {
        font-size: 16px;
        padding: 15px;
    }
    
    /* China Payment Brands Mobile */
    .china-payment-brands {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .china-brand {
        font-size: 14px;
        padding: 15px 20px;
    }
    
    .china-brand-image {
        width: 80px;
        height: 80px;
    }
    
    .china-brand-text {
        font-size: 16px;
    }
    
    .china-payment-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .china-feature-image {
        width: 100px;
        height: 100px;
    }
    
    .subcategory-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .subcategory-card {
        padding: 30px 20px;
    }
    
    .subcategory-image {
        width: 60px;
        height: 60px;
    }
    
    .subcategory-card-title {
        font-size: 20px;
    }
    
    .subcategory-card-description {
        font-size: 14px;
    }
    
    .feature-item-vertical .feature-image {
        width: 100px;
        height: 100px;
    }
    
    /* Process Images Mobile */
    .process-images {
        flex-direction: column;
        align-items: center;
    }
    
    .process-image-container {
        width: 100%;
        max-width: 100%;
        margin: 150px 0 150px 0;
    }
    
    .process-image {
        width: 400px !important;
        transform: scale(2.0) !important;
    }
    
    .wechat-process-image {
        transform: scale(2.5) !important;
    }
    
    .wechat-process-images {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }
    
    .wechat-process-image-container {
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
        padding: 30px 0 !important;
    }
    
    .process-image-placeholder {
        padding: 30px;
        font-size: 13px;
    }
    
    /* Risk Management Mobile - Force Vertical Layout */
    .definition-section .risk-definition-content .risk-images-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 20px !important;
        margin: 30px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .risk-card {
        padding: 20px !important;
        flex-direction: row !important;
        text-align: left !important;
        height: auto !important;
        min-height: auto !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .risk-image-container {
        margin-right: 20px !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .risk-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    .risk-definition-text {
        font-size: 13px !important;
        text-align: left !important;
        flex: 1 !important;
    }
}

/* Additional Mobile Styles for Risk Management - Force Vertical Layout */
@media (max-width: 900px) {
    .definition-section .risk-definition-content .risk-images-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 30px 0 !important;
    }
}

@media (max-width: 480px) {
    .definition-section .risk-definition-content .risk-images-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin: 20px 0 !important;
    }
    
    .risk-card {
        flex-direction: row !important;
        padding: 15px !important;
        align-items: center !important;
        text-align: left !important;
    }
    
    .risk-image-container {
        margin-right: 15px !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .risk-image {
        width: 60px !important;
        height: 60px !important;
    }
    
    .risk-definition-text {
        font-size: 12px !important;
        text-align: left !important;
        flex: 1 !important;
        line-height: 1.4 !important;
    }
    
    .cert-logo {
        width: 280px;
    }
    
    .certification-logos {
        gap: 40px;
    }
    
    .risk-definition-text {
        font-size: 15px;
    }
    
    .certification-logos {
        gap: 20px;
    }
    
    .cert-logo-placeholder {
        padding: 15px 20px;
        font-size: 11px;
        min-width: 100px;
    }
    
    .risk-feature-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .risk-feature-number {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 12px;
    }
    
    .risk-feature-text {
        font-size: 15px;
    }
    
    /* Service Content Mobile */
    .service-title {
        font-size: 24px;
    }
    
    .service-subtitle {
        font-size: 20px;
    }
    
    .fee-table th,
    .fee-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .process-item {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .process-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .process-title {
        font-size: 14px;
    }
    
    .process-desc {
        font-size: 12px;
    }
    
    .document-requirements {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .requirement-section {
        padding: 12px;
    }
    
    .requirement-title {
        font-size: 13px;
    }
    
    .requirement-list li {
        font-size: 12px;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* China Payment Mobile */
    .china-payment-section {
        padding: 40px 0;
    }

    .china-payment-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .china-payment-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .china-payment-submenu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .china-submenu-link {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* China Payment Submenu Mobile */
    .china-payment-submenu-section {
        padding: 15px 0;
    }

    .china-payment-submenu-section .china-payment-submenu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .china-payment-submenu-section .china-submenu-link {
        width: 100%;
        max-width: 180px;
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Footer Mobile 480px */
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 0;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-info p {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
}

/* Mobile adjustments for process table */
@media (max-width: 768px) {
    .process-table-container {
        margin: 0 10px;
    }
    
    .process-table {
        font-size: 14px;
    }
    
    .process-number-cell {
        width: 60px;
        padding: 15px 10px;
    }
    
    .process-title-cell {
        padding: 15px 10px !important;
        width: 200px !important;
        min-width: 200px !important;
    }
    
    .process-desc-cell {
        padding: 15px 10px !important;
        min-width: 300px !important;
        width: auto !important;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .process-title {
        font-size: 14px;
    }
    
    .process-desc {
        font-size: 12px;
    }
    
    .requirement-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .requirement-column {
        padding: 18px;
        min-width: 200px;
    }
    
    .requirement-title {
        font-size: 15px;
    }
    
    .requirement-list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .process-table-container {
        margin: 0 5px;
    }
    
    .process-table {
        font-size: 12px;
    }
    
    .process-number-cell {
        width: 50px;
        padding: 12px 8px;
    }
    
    .process-title-cell {
        padding: 12px 8px !important;
        width: 160px !important;
        min-width: 160px !important;
    }
    
    .process-desc-cell {
        padding: 12px 8px !important;
        min-width: 250px !important;
        width: auto !important;
    }
    
    .process-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .process-title {
        font-size: 13px;
    }
    
    .process-desc {
        font-size: 11px;
    }
    
    .process-link {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Global Mobile Responsive Styles - Font Size Adjustments */
@media (max-width: 768px) {
    /* Global font size adjustments for mobile */
    body {
        font-size: 14px;
    }
    
    /* Header adjustments */
    .header {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .damage-relief-btn,
    .consultation-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 60vh;
        padding: 20px 0;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 14px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    /* Service cards */
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 12px;
    }
    
    .service-link {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    /* Security section */
    .security-item h3 {
        font-size: 16px;
    }
    
    .security-item p {
        font-size: 12px;
    }
    
    /* Timeline section */
    .timeline-year h3 {
        font-size: 18px;
    }
    
    .timeline-year li {
        font-size: 12px;
    }
    
    /* Footer */
    .footer-info p {
        font-size: 11px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    /* Page title sections */
    .page-title-section {
        height: 120px;
    }
    
    .submenu-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Definition sections */
    .definition-subtitle {
        font-size: 20px;
    }
    
    .definition-text,
    .definition-note {
        font-size: 12px;
    }
    
    /* Feature sections */
    .feature-subtitle {
        font-size: 20px;
    }
    
    .feature-grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 20px;
    }
    
    .feature-item-with-image {
        flex-direction: row;
        align-items: center;
        padding: 15px;
        min-height: auto;
    }
    
    .feature-content-left {
        flex: 1;
        margin-right: 15px;
    }
    
    .feature-content-right {
        flex: 0 0 80px;
        text-align: center;
    }
    
    .feature-number {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .feature-item-title {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .feature-image {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
    
    .feature-item-text {
        font-size: 11px;
    }
    
    /* Process sections */
    .process-subtitle {
        font-size: 20px;
    }
    
    .step-title {
        font-size: 12px;
    }
    
    .step-description {
        font-size: 10px;
    }
    
    /* Card brands */
    .card-brands-grid-single {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        padding: 10px 0;
    }
    
    .card-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .card-brand-image {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .card-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .card-brand-text {
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        word-break: break-word;
    }
    
    .card-brand-text-special {
        font-size: 9px;
        line-height: 1.2;
        text-align: center;
        word-break: break-word;
    }
    
    /* China payment */
    .china-payment-title {
        font-size: 24px;
    }
    
    .china-payment-subtitle {
        font-size: 14px;
    }
    
    .china-payment-brands {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 40px;
        flex-wrap: nowrap;
    }
    
    .china-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }
    
    .china-brand-image {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
    }
    
    .china-brand-text {
        font-size: 12px;
        text-align: center;
        word-break: break-word;
        line-height: 1.2;
    }
    
    .china-payment-features {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .china-feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        flex: 1;
        min-width: 0;
        text-align: center;
    }
    
    .china-feature-image-container {
        margin-bottom: 8px;
    }
    
    .china-feature-image {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
    
    .china-feature-item h4 {
        margin: 0 0 6px 0;
    }
    
    .china-feature-title {
        font-size: 11px;
        line-height: 1.2;
        margin-bottom: 6px;
        word-break: break-word;
    }
    
    .china-feature-text {
        font-size: 9px;
        line-height: 1.3;
        margin: 0;
        word-break: break-word;
    }
    
    /* Subcategory cards */
    .subcategory-card-title {
        font-size: 18px;
    }
    
    .subcategory-card-description {
        font-size: 12px;
    }
    
    /* Risk management */
    .risk-definition-text {
        font-size: 11px;
    }
    
    .risk-feature-text {
        font-size: 12px;
    }
    
    /* Service content */
    .service-title {
        font-size: 24px;
    }
    
    .service-subtitle {
        font-size: 18px;
    }
    
    /* Fee table */
    .fee-table th,
    .fee-table td {
        font-size: 11px;
        padding: 8px 6px;
    }
    
    /* Process table */
    .process-title {
        font-size: 12px;
    }
    
    .process-desc {
        font-size: 10px;
    }
    
    .requirement-title {
        font-size: 12px;
    }
    
    .requirement-list li {
        font-size: 10px;
    }
    
    /* Application form */
    .form-label {
        font-size: 12px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .submit-button {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    /* Privacy and Terms */
    .privacy-text h2,
    .terms-text h2 {
        font-size: 20px;
    }
    
    .privacy-text h3,
    .terms-text h3 {
        font-size: 16px;
    }
    
    .privacy-text p,
    .terms-text p {
        font-size: 12px;
    }
    
    .privacy-text li,
    .terms-text li {
        font-size: 12px;
    }
    
    /* QNA page */
    .qna-item h3 {
        font-size: 14px;
    }
    
    .qna-item p {
        font-size: 12px;
    }
}

/* Additional mobile adjustments for very small screens */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
    
    .service-card p {
        font-size: 11px;
    }
    
    .timeline-year h3 {
        font-size: 16px;
    }
    
    .timeline-year li {
        font-size: 11px;
    }
    
    .footer-info p {
        font-size: 10px;
    }
    
    .submenu-link {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .definition-subtitle {
        font-size: 18px;
    }
    
    .definition-text,
    .definition-note {
        font-size: 11px;
    }
    
    .feature-subtitle {
        font-size: 18px;
    }
    
    .feature-grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 15px;
    }
    
    .feature-item-with-image {
        flex-direction: row;
        align-items: center;
        padding: 12px;
        min-height: auto;
    }
    
    .feature-content-left {
        flex: 1;
        margin-right: 12px;
    }
    
    .feature-content-right {
        flex: 0 0 70px;
        text-align: center;
    }
    
    .feature-number {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .feature-item-title {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .feature-image {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }
    
    .feature-item-text {
        font-size: 10px;
    }
    
    .process-subtitle {
        font-size: 18px;
    }
    
    .step-title {
        font-size: 11px;
    }
    
    .step-description {
        font-size: 9px;
    }
    
    .card-brands-grid-single {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
        padding: 8px 0;
    }
    
    .card-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .card-brand-image {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .card-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .card-brand-text {
        font-size: 10px;
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
    }
    
    .card-brand-text-special {
        font-size: 8px;
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
    }
    
    .china-payment-title {
        font-size: 20px;
    }
    
    .china-payment-subtitle {
        font-size: 12px;
    }
    
    .china-payment-brands {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: nowrap;
    }
    
    .china-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }
    
    .china-brand-image {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 8px;
    }
    
    .china-brand-text {
        font-size: 10px;
        text-align: center;
        word-break: break-word;
        line-height: 1.1;
    }
    
    .china-payment-features {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .china-feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        flex: 1;
        min-width: 0;
        text-align: center;
    }
    
    .china-feature-image-container {
        margin-bottom: 6px;
    }
    
    .china-feature-image {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }
    
    .china-feature-item h4 {
        margin: 0 0 4px 0;
    }
    
    .china-feature-title {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 4px;
        word-break: break-word;
    }
    
    .china-feature-text {
        font-size: 8px;
        line-height: 1.2;
        margin: 0;
        word-break: break-word;
    }
    
    /* Process images mobile - restore original size */
    .process-image {
        max-width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
        object-fit: contain !important;
    }
    
    .process-illustration {
        text-align: center !important;
        margin: 15px 0 !important;
        padding: 0 !important;
    }
    
    /* Process images mobile - smaller screens - restore original size */
    .process-image {
        max-width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
        object-fit: contain !important;
    }
    
    .process-illustration {
        text-align: center !important;
        margin: 10px 0 !important;
        padding: 0 !important;
    }
    
    .subcategory-card-title {
        font-size: 16px;
    }
    
    .subcategory-card-description {
        font-size: 11px;
    }
    
    .risk-definition-text {
        font-size: 10px;
    }
    
    .risk-feature-text {
        font-size: 11px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-subtitle {
        font-size: 16px;
    }
    
    .fee-table th,
    .fee-table td {
        font-size: 10px;
        padding: 6px 4px;
    }
    
    .process-title {
        font-size: 11px;
    }
    
    .process-desc {
        font-size: 9px;
    }
    
    .requirement-title {
        font-size: 11px;
    }
    
    .requirement-list li {
        font-size: 9px;
    }
    
    .form-label {
        font-size: 11px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 11px;
        padding: 6px 8px;
    }
    
    .submit-button {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .privacy-text h2,
    .terms-text h2 {
        font-size: 18px;
    }
    
    .privacy-text h3,
    .terms-text h3 {
        font-size: 14px;
    }
    
    .privacy-text p,
    .terms-text p {
        font-size: 11px;
    }
    
    .privacy-text li,
    .terms-text li {
        font-size: 11px;
    }
    
    .qna-item h3 {
        font-size: 13px;
    }
    
    .qna-item p {
        font-size: 11px;
    }
}

