/* ===========================
   전역 설정 및 리셋
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 메인 컬러 */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    
    /* 배경 컬러 */
    --bg-gradient-start: #0f172a;
    --bg-gradient-end: #1e293b;
    --content-bg: #ffffff;
    --section-bg: #f8fafc;
    
    /* 텍스트 컬러 */
    --text-primary: #0f172a;
    --text-secondary: #1e293b;
    --text-light: #475569;
    
    /* 상태 컬러 */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* 그림자 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* 애니메이션 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    overflow-x: auto;
    min-width: 1200px; /* PC 버전 최소 너비 고정 */
}

/* ===========================
   상단 배너 광고 영역
   =========================== */
.top-banner-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 30px 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.top-banner-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
    align-items: stretch;
}

.ad-banner {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px dashed #6b7280;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.ad-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.ad-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.top-banner {
    height: auto;
    min-height: 180px;
}

.side-banner {
    height: 600px;
    width: 160px;
}

/* 커스텀 배너 스타일 */
.custom-banner {
    width: 160px;
    height: 600px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    position: relative;
}

/* 배너 배경 이미지 */
.custom-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.genspark.ai/api/files/s/VwfLOesb?cache_control=3600');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.custom-banner.payon-banner::before {
    background-image: url('https://www.genspark.ai/api/files/s/rjDMt17l?cache_control=3600');
}

.custom-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

.custom-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.custom-banner.payon-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.custom-banner.payon-banner:hover {
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.banner-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px 12px;
    text-decoration: none;
    color: white;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.banner-header {
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.4);
}

.banner-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    animation: pulse 2s infinite;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-badge {
    background: rgba(255,255,255,0.25);
    padding: 10px 8px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.banner-badge i {
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-contact {
    background: rgba(255,255,255,0.2);
    padding: 12px 8px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.line-icon {
    font-size: 1.6rem;
    color: #06c755;
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.banner-id {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}

.id-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.id-value {
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    background: rgba(255,255,255,0.4);
    padding: 5px 10px;
    border-radius: 5px;
    word-break: break-all;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.banner-cta {
    background: rgba(255,255,255,0.3);
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.banner-cta:hover {
    background: rgba(255,255,255,0.45);
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.6);
}

.banner-cta i {
    font-size: 1.1rem;
}

.ad-banner i {
    font-size: 2rem;
    color: #9ca3af;
    z-index: 1;
}

.ad-banner p {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 1;
    text-align: center;
}

.ad-banner span {
    color: #6b7280;
    font-size: 0.75rem;
    z-index: 1;
}

/* ===========================
   메인 컨테이너 레이아웃
   =========================== */
.main-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 사이드바 */
.sidebar {
    position: relative;
}

.sticky {
    position: sticky;
    top: 160px;
}

/* 메인 콘텐츠 */
.content {
    background: var(--content-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   헤더
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 400;
}

/* ===========================
   섹션 공통 스타일
   =========================== */
.section {
    padding: 50px 40px;
    animation: fadeIn 0.8s ease;
}

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

.section:nth-child(even) {
    background: var(--section-bg);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.section-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===========================
   소개 섹션
   =========================== */
.intro-content {
    max-width: 100%;
}

.highlight-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--primary-color);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-md);
}

.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* 플로우 차트 */
.example-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.flow-item {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.flow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-md);
}

.flow-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.flow-item p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.example-text {
    display: block;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
    font-style: italic;
    margin-top: 10px;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    animation: slideRight 1.5s infinite;
}

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

/* ===========================
   단계 카드
   =========================== */
.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid #e2e8f0;
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
}

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

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.step-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.step-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.step-content {
    color: #1e293b;
    font-weight: 500;
}

.step-intro {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 500;
}

/* 체크리스트 */
.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    transition: var(--transition-fast);
}

.checklist li:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.checklist li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* 예시 박스 */
.example-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid var(--warning-color);
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: var(--shadow-md);
}

.example-box h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.example-box i {
    color: var(--warning-color);
}

.example-list {
    list-style: none;
    padding-left: 0;
}

.example-list li {
    padding: 8px 0;
    color: #1e293b;
    font-weight: 500;
}

.example-list li::before {
    content: '▸';
    color: var(--warning-color);
    font-weight: bold;
    margin-right: 10px;
}

/* 코드 박스 */
.code-box {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: var(--shadow-md);
}

.code-box h4 {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 12px;
}

.code-box pre {
    margin: 0;
    overflow-x: auto;
}

.code-box code {
    color: #94a3b8;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    display: block;
    white-space: pre-wrap;
}

/* 인포 그리드 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    padding: 8px 0;
    color: var(--text-secondary);
}

/* 결제 정보 */
.payment-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.payment-info i {
    color: var(--success-color);
}

/* 관리 그리드 */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.management-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.management-item:hover {
    transform: translateY(-3px);
    border-color: var(--info-color);
    box-shadow: var(--shadow-lg);
}

.management-item i {
    font-size: 2rem;
    color: var(--info-color);
    margin-bottom: 12px;
    display: block;
}

.management-item h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
}

/* 발송 방법 */
.delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.method-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.method-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.method-header h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.method-card ol {
    padding-left: 20px;
    color: #1e293b;
    font-weight: 500;
}

.method-card ol li {
    padding: 8px 0;
    line-height: 1.6;
}

/* 완료 체크리스트 */
.completion-checklist h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.completion-checklist i {
    color: var(--success-color);
}

/* ===========================
   주의사항 섹션
   =========================== */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.warning-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    transition: var(--transition-normal);
}

.warning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.warning-card.seller {
    border-color: var(--info-color);
}

.warning-card.buyer {
    border-color: var(--success-color);
}

.warning-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.warning-card h3 i {
    font-size: 1.5rem;
}

.warning-card.seller h3 i {
    color: var(--info-color);
}

.warning-card.buyer h3 i {
    color: var(--success-color);
}

.warning-list {
    list-style: none;
    padding-left: 0;
}

.warning-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.warning-list li:hover {
    transform: translateX(5px);
}

.warning-list li i {
    font-size: 1.2rem;
}

.warning-list li.danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid var(--danger-color);
}

.warning-list li.danger i {
    color: var(--danger-color);
}

.warning-list li.safe {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--success-color);
}

.warning-list li.safe i {
    color: var(--success-color);
}

/* ===========================
   성공 팁 섹션
   =========================== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.tip-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tip-card p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

/* ===========================
   분쟁 대응 섹션
   =========================== */
.dispute-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.dispute-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--danger-color);
    transition: var(--transition-normal);
}

.dispute-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.dispute-card i {
    font-size: 3rem;
    color: var(--danger-color);
    margin-bottom: 20px;
    display: block;
}

.dispute-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.dispute-card p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.6;
}

/* ===========================
   결론 섹션
   =========================== */
.conclusion-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.conclusion-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
    animation: pulse 2s infinite;
}

.conclusion-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.conclusion-content p {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 35px;
}

/* CTA 버튼 */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button.sell-voucher {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 1.3rem;
    padding: 18px 45px;
    border: none;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.cta-button.sell-voucher:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
    transform: translateY(-5px);
}

.cta-button.sell-voucher i {
    font-size: 1.4rem;
}

/* ===========================
   푸터
   =========================== */
.page-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.page-footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* ===========================
   Scroll to Top 버튼
   =========================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

/* ===========================
   법적 처벌 섹션
   =========================== */
.legal-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.legal-warning-box {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.legal-warning-box i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s infinite;
}

.legal-warning-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.legal-warning-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.punishment-section {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    border: 3px solid #fca5a5;
}

.punishment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #ef4444;
}

.punishment-header i {
    font-size: 2rem;
    color: #dc2626;
}

.punishment-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #dc2626;
}

.law-box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.law-box h4 {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.law-box h4 i {
    font-size: 1.5rem;
}

.law-content {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.law-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.law-text strong {
    color: #fbbf24;
    font-weight: 800;
    font-size: 1.2rem;
}

.punishment-details {
    margin: 30px 0;
}

.punishment-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.procedure-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.procedure-card {
    flex: 1;
    min-width: 180px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #cbd5e1;
    transition: var(--transition-normal);
}

.procedure-card:hover {
    transform: translateY(-5px);
    border-color: #ef4444;
    box-shadow: var(--shadow-lg);
}

.procedure-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 12px;
    box-shadow: var(--shadow-md);
}

.procedure-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.procedure-card p {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.4;
}

.procedure-arrow {
    font-size: 1.8rem;
    color: #ef4444;
}

.penalty-info {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
}

.penalty-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.penalty-list li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.penalty-list li strong {
    color: #dc2626;
    font-weight: 700;
}

.civil-procedures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.civil-card {
    background: white;
    border: 3px solid #3b82f6;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.civil-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #2563eb;
}

.civil-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.civil-icon i {
    font-size: 2rem;
    color: white;
}

.civil-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 15px;
}

.civil-content {
    text-align: left;
}

.civil-desc {
    font-size: 1.05rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.civil-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.civil-list li {
    padding: 8px 0;
    color: #1e293b;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.civil-list li i {
    color: #10b981;
    margin-top: 4px;
}

.civil-cost {
    background: #f0fdf4;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    font-size: 1rem;
    color: #1e293b;
}

.execution-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid #f59e0b;
    display: flex;
    align-items: center;
    gap: 15px;
}

.execution-warning i {
    font-size: 2rem;
    color: #f59e0b;
}

.execution-warning p {
    font-size: 1.1rem;
    color: #78350f;
    font-weight: 600;
    margin: 0;
}

.execution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.execution-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #cbd5e1;
    transition: var(--transition-normal);
}

.execution-card:hover {
    transform: translateY(-5px);
    border-color: #ef4444;
    box-shadow: var(--shadow-lg);
}

.execution-card i {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 15px;
    display: block;
}

.execution-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.execution-card ul li {
    padding: 8px 0;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

.execution-card ul li:last-child {
    border-bottom: none;
}

.additional-penalties {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    border: 3px solid #fca5a5;
}

.additional-penalties h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.penalties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.penalty-item {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #fecaca;
    transition: var(--transition-normal);
}

.penalty-item:hover {
    transform: translateY(-3px);
    border-color: #f87171;
    box-shadow: var(--shadow-md);
}

.penalty-item i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 12px;
    display: block;
}

.penalty-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 10px;
}

.penalty-item p {
    font-size: 0.95rem;
    color: #7f1d1d;
    font-weight: 500;
    line-height: 1.5;
}

.final-warning {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    color: white;
}

.final-warning i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.final-warning h3 {
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.warning-content {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.warning-content p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.final-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.final-list li {
    padding: 12px 20px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    border-left: 5px solid #fbbf24;
    backdrop-filter: blur(5px);
}

.warning-emphasis {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    background: rgba(251, 191, 36, 0.2);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #fbbf24;
    margin-top: 20px;
}

/* ===========================
   반응형 디자인
   =========================== */
/* ===========================
   반응형 미디어 쿼리 (비활성화 - PC 버전 고정)
   =========================== */

/* 모바일 반응형 제거: 모든 화면에서 PC 버전 표시 */

/* 프린트 스타일만 유지 */
@media print {
    .ad-banner,
    .top-banner-container,
    .sidebar,
    .scroll-top-btn,
    .cta-buttons {
        display: none !important;
    }
    
    .main-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .content {
        box-shadow: none;
    }
    
    .step-card,
    .warning-card,
    .tip-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ===========================
   성실상품권 배너 스타일
   =========================== */
.seongsilcard-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    border: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 180px !important;
    padding: 25px 30px !important;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex !important;
    flex-direction: column !important;
}

.seongsilcard-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.seongsilcard-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-logo::before {
    content: '🏆';
    font-size: 48px;
    filter: 
        drop-shadow(0 6px 12px rgba(255, 215, 0, 0.8)) 
        drop-shadow(0 0 30px rgba(255, 215, 0, 0.6))
        drop-shadow(0 0 50px rgba(255, 215, 0, 0.4));
    animation: trophy-glow 3s ease-in-out infinite;
}

@keyframes trophy-glow {
    0%, 100% {
        filter: 
            drop-shadow(0 6px 12px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 50px rgba(255, 215, 0, 0.4));
        transform: scale(1) rotate(0deg);
    }
    50% {
        filter: 
            drop-shadow(0 8px 16px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 60px rgba(255, 215, 0, 0.6));
        transform: scale(1.08) rotate(-3deg);
    }
}

.banner-logo h3 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    text-shadow: 
        0 2px 4px rgba(255, 215, 0, 0.5),
        0 4px 8px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.4);
    letter-spacing: 3px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    font-family: 'Noto Sans KR', sans-serif;
    position: relative;
    animation: gold-shimmer 3s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

.banner-logo h3::after {
    content: 'PREMIUM';
    position: absolute;
    top: -10px;
    right: -50px;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 1px;
    border: 2px solid #fbbf24;
    filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.6));
}

.banner-badges {
    display: flex;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-badges .badge {
    background: rgba(255,255,255,0.25);
    color: white;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.4);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.banner-badges .badge i {
    font-size: 14px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.banner-badges .badge:nth-child(1) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
    border-color: rgba(147, 197, 253, 0.8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.banner-badges .badge:nth-child(1) i {
    color: #dbeafe;
}

.banner-badges .badge:nth-child(2) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    border-color: rgba(110, 231, 183, 0.8);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.banner-badges .badge:nth-child(2) i {
    color: #d1fae5;
}

.banner-badges .badge-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fcd34d;
    animation: glow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
}

.banner-badges .badge-highlight i {
    color: #fffbeb;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
    }
    50% {
        box-shadow: 0 4px 25px rgba(251, 191, 36, 0.8);
    }
}

.banner-cta {
    text-align: center;
    margin-top: auto;
}

.cta-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--primary-color);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.7);
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn i {
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: #10b981;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.4));
}

.cta-btn::after {
    content: '→';
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.cta-btn:hover::after {
    transform: translateX(5px);
}

.seongsilcard-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   프리미엄 광고 공간 스타일
   =========================== */
.premium-ad-space {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%) !important;
    border: 2px solid #4b5563 !important;
    height: auto !important;
    min-height: 180px !important;
    padding: 25px 30px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-ad-space::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
    animation: shimmer 5s linear infinite;
    z-index: 1;
}

.premium-ad-space:hover {
    transform: translateY(-3px);
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.ad-space-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 2;
}

.ad-icon {
    font-size: 42px;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 8px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.6));
}

.ad-text {
    text-align: center;
    flex: 1;
}

.ad-text h4 {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.ad-text p {
    color: #c7d2fe;
    font-size: 13px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ad-contact-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    white-space: nowrap;
}

.ad-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.ad-contact-btn i {
    font-size: 16px;
}
