        :root {
            --primary: #0a1f14;
            --accent: #e94560;
            --gold: #d4af37;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-blue: #0a2e1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* 네비게이션 바 높이 */
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            background: var(--primary);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 30, 60, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: translateX(5px);
        }

        .logo-image {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo:hover .logo-image {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-button {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s ease;
            position: relative;
            text-align: left;
        }

        .nav-button::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-button:hover {
            color: var(--gold);
        }

        .nav-button:hover::after {
            width: 100%;
        }

        /* Active Menu State */
        .nav-button.active,
        a.nav-button.active {
            color: var(--gold) !important;
        }

        .nav-button.active::after,
        a.nav-button.active::after {
            width: 100%;
            background: var(--gold);
        }

        .nav-item.has-dropdown.active-parent > .nav-button {
            color: var(--gold);
        }

        /* Dropdown Menu Styles */
        .nav-item {
            position: relative;
        }

        .nav-item.has-dropdown > .nav-button::after,
        .nav-item.has-dropdown > .nav-button:hover::after {
            width: 0;
        }

        .nav-item.has-dropdown > .nav-button {
            padding-right: 20px;
        }

        .nav-item.has-dropdown > .nav-button::before {
            content: '▼';
            position: absolute;
            right: 0;
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .nav-item.has-dropdown:hover > .nav-button::before,
        .nav-item.has-dropdown.active > .nav-button::before {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(8, 25, 55, 0.98);
            min-width: 200px;
            border-radius: 8px;
            padding: 10px 0;
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(218, 165, 32, 0.3);
            z-index: 1000;
        }

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

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu .nav-button {
            display: block;
            width: 100%;
            padding: 12px 25px;
            text-align: left;
            white-space: nowrap;
            border-radius: 0;
        }

        .dropdown-menu .nav-button::after {
            display: none;
        }

        .dropdown-menu .nav-button:hover {
            background: rgba(218, 165, 32, 0.2);
        }

        /* Enhanced Comparison Table Styles */
        .comparison-table-container {
            overflow-x: auto;
            margin: 0 auto;
            max-width: 1200px;
        }

        /* 테이블 헤더 라벨 */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(10, 40, 25, 0.3);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            table-layout: fixed;
        }

        .comparison-table thead th {
            width: 20%;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
            padding: 25px 20px;
            vertical-align: middle;
            border: none;
        }

        .comparison-table thead th:first-child {
            color: var(--gold);
            background: linear-gradient(135deg, rgba(10, 31, 20, 0.8) 0%, rgba(10, 40, 25, 0.8) 100%);
        }

        .comparison-table thead th.header-old {
            width: 40%;
            color: #fff;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(178, 34, 34, 0.5) 100%);
        }

        .comparison-table thead th.header-new {
            width: 40%;
            color: #fff;
            background: linear-gradient(135deg, rgba(218, 165, 32, 0.6) 0%, rgba(184, 134, 11, 0.5) 100%);
        }

        .comparison-table thead .comparison-icon {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 5px;
        }

        .comparison-table tbody td:nth-child(1) {
            width: 20%;
        }

        .comparison-table tbody td:nth-child(2) {
            width: 40%;
        }

        .comparison-table tbody td:nth-child(3) {
            width: 40%;
        }

        .comparison-table tbody tr {
            transition: all 0.3s ease;
        }

        .comparison-table tbody tr:hover {
            background: rgba(218, 165, 32, 0.05);
            transform: scale(1.01);
        }

        .comparison-table tbody td {
            padding: 30px 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            vertical-align: middle;
        }

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

        .comparison-table tbody td:first-child {
            background: rgba(10, 31, 20, 0.5);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--gold);
            text-align: center;
            border-right: 2px solid rgba(218, 165, 32, 0.3);
        }

        .comparison-table tbody td:nth-child(2) {
            background: rgba(139, 0, 0, 0.1);
            border-right: 2px solid rgba(255, 255, 255, 0.05);
        }

        .comparison-table tbody td:nth-child(3) {
            background: rgba(218, 165, 32, 0.1);
        }

        .comparison-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .comparison-main {
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        .comparison-sub {
            font-size: 0.95rem;
            padding: 10px 15px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border-left: 3px solid;
            font-style: italic;
        }

        .comparison-table tbody td:nth-child(2) .comparison-sub {
            border-left-color: rgba(255, 100, 100, 0.6);
            color: rgba(255, 150, 150, 0.9);
        }

        .comparison-table tbody td:nth-child(3) .comparison-sub {
            border-left-color: var(--gold);
            color: rgba(218, 165, 32, 0.9);
        }

        .comparison-icon {
            font-size: 2rem;
            margin-bottom: 8px;
            display: inline-block;
        }

        @media (max-width: 768px) {
            .comparison-table-container {
                overflow-x: auto;
            }

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table thead th {
                font-size: 0.9rem;
                padding: 15px 8px;
            }

            .comparison-table thead .comparison-icon {
                font-size: 1.5rem;
                margin-bottom: 3px;
            }

            .comparison-table tbody td {
                padding: 15px 8px;
            }

            .comparison-table tbody td:first-child {
                font-size: 0.9rem;
            }

            .comparison-main {
                font-size: 0.85rem;
            }

            .comparison-sub {
                font-size: 0.75rem;
                padding: 8px 10px;
            }

            .comparison-icon {
                font-size: 1.2rem;
            }
        }

        .footer-link-btn {
            background: none;
            border: none;
            color: var(--gold);
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 0;
        }

        .footer-link-btn:hover {
            color: var(--accent);
        }

        .nav-cta {
            padding: 10px 25px;
            background: linear-gradient(135deg, var(--accent) 0%, #c9184a 100%);
            color: white !important;
            border-radius: 6px;
            font-weight: 700;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }

        .nav-cta::after {
            display: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 31, 20, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                padding: 40px 20px;
                gap: 15px;
                transition: left 0.3s ease;
                overflow-y: auto;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo-image {
                height: 40px;
            }

            /* Mobile Dropdown Styles */
            .nav-item {
                width: 100%;
            }

            .nav-item > .nav-button {
                width: 100%;
                text-align: left;
                font-size: 1.1rem;
                padding: 15px 20px;
                background: rgba(10, 40, 25, 0.5);
                border-radius: 8px;
            }

            .nav-item.has-dropdown > .nav-button::before {
                right: 20px;
                font-size: 0.8rem;
            }

            .dropdown-menu {
                position: static;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                margin-top: 0;
                padding: 0;
                transform: none;
                transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
                background: rgba(10, 40, 25, 0.3);
                border: none;
                border-radius: 0 0 8px 8px;
            }

            .nav-item.active .dropdown-menu {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 10px 0;
                margin-top: 5px;
            }

            .dropdown-menu .nav-button {
                padding: 12px 30px;
                font-size: 1rem;
                background: transparent;
            }

            .dropdown-menu .nav-button:hover {
                background: rgba(218, 165, 32, 0.2);
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a2a50 0%, #0e3468 50%, #0a2a50 100%);
            overflow: hidden;
            padding-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 30px 20px;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-badge {
            display: inline-block;
            padding: 6px 18px;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid var(--gold);
            border-radius: 50px;
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 15px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto 25px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .stat-highlight {
            display: inline-block;
            color: var(--accent);
            font-weight: 900;
            font-size: 1.3em;
            text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn {
            padding: 12px 28px;
            font-size: 0.95rem;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, #c9184a 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Problem Section */
        .section {
            padding: 60px 0;
            position: relative;
        }

        .section-dark {
            background: linear-gradient(180deg, #0a1a12 0%, #0e2418 100%);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.5rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 15px;
            color: var(--gold);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto 40px;
        }

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

        .problem-card {
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(10, 40, 25, 0.1) 100%);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(233, 69, 96, 0.2);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out both;
        }

        .problem-card:nth-child(1) { animation-delay: 0.1s; }
        .problem-card:nth-child(2) { animation-delay: 0.2s; }
        .problem-card:nth-child(3) { animation-delay: 0.3s; }

        .problem-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
        }

        .problem-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--gold);
        }

        .problem-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* Solution Section */
        .solution-grid {
            display: grid;
            gap: 60px;
            margin-top: 80px;
        }

        .solution-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            animation: fadeInUp 1s ease-out both;
        }

        .solution-item:nth-child(even) {
            direction: rtl;
        }

        .solution-item:nth-child(even) > * {
            direction: ltr;
        }

        .solution-content {
            padding: 40px;
        }

        .solution-number {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 900;
            color: rgba(212, 175, 55, 0.2);
            line-height: 1;
            margin-bottom: 20px;
        }

        .solution-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .solution-content h4 {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .solution-features {
            list-style: none;
            margin-top: 30px;
        }

        .solution-features li {
            padding: 15px 0;
            padding-left: 30px;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .solution-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 900;
            font-size: 1.2rem;
        }

        .solution-visual {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.5) 0%, rgba(10, 31, 20, 0.5) 100%);
            padding: 60px;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }

        .solution-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .dashboard-mockup {
            position: relative;
            z-index: 2;
            width: 100%;
            text-align: center;
        }

        .dashboard-mockup h4 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 30px;
        }

        .metric {
            background: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 15px 0;
            border-left: 4px solid var(--accent);
        }

        .metric-value {
            font-size: 3rem;
            font-weight: 900;
            color: var(--accent);
        }

        .metric-label {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 10px;
        }

        /* Comparison Table */
        .comparison {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.3) 0%, rgba(10, 31, 20, 0.3) 100%);
            padding: 80px 40px;
            border-radius: 20px;
            margin-top: 80px;
        }

        .comparison-table {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2px;
            background: rgba(233, 69, 96, 0.3);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 40px;
        }

        .comparison-cell {
            background: var(--primary);
            padding: 30px 20px;
            text-align: center;
        }

        .comparison-cell.header {
            background: linear-gradient(135deg, var(--accent) 0%, #c9184a 100%);
            font-weight: 900;
            font-size: 1.2rem;
        }

        .comparison-cell.highlight {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 40, 25, 0.2) 100%);
            border: 2px solid var(--gold);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .stat-card {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(10, 40, 25, 0.1) 100%);
            border-radius: 20px;
            border: 1px solid rgba(233, 69, 96, 0.2);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out both;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }

        .stat-value {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent) 0%, #c9184a 100%);
            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 30px;
            color: white;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-section .btn {
            background: white;
            color: var(--accent);
            font-size: 1.2rem;
            padding: 20px 50px;
        }

        .cta-section .btn:hover {
            background: var(--gold);
            color: white;
            transform: translateY(-5px) scale(1.05);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: fadeInUp 1s ease-out 1s both;
        }

        .scroll-down {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .scroll-down:hover {
            color: var(--gold);
            transform: translateY(5px);
        }

        .scroll-down svg {
            animation: bounce 2s ease-in-out infinite;
        }

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

        /* Section Navigation Buttons */
        .section-nav-btn {
            display: inline-block;
            margin-top: 60px;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .section-nav-btn .btn {
            font-size: 1.1rem;
            padding: 18px 40px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0a2a50 0%, #0e3468 100%);
            padding: 60px 20px 40px;
            text-align: center;
            border-top: 3px solid var(--gold);
        }

        .footer-contact {
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-ceo {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .footer-info {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .contact-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .contact-divider {
            color: rgba(212, 175, 55, 0.5);
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-content p {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .footer-links a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .solution-item {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .solution-item:nth-child(even) {
                direction: ltr;
            }

            .comparison-table {
                grid-template-columns: 1fr;
            }

            .solution-visual {
                padding: 40px 20px;
                min-height: 300px;
            }

            h1 {
                font-size: 2.5rem;
            }

            .section {
                padding: 80px 0;
            }

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

            .solution-features-grid {
                grid-template-columns: 1fr;
            }

            .legal-risks-grid {
                grid-template-columns: 1fr;
            }

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

            .legal-warning-box {
                padding: 30px 20px;
            }

            .legal-warning-box h3 {
                font-size: 1.2rem;
            }

            .flowchart-box {
                padding: 30px 20px;
            }

            .legal-solution-box {
                padding: 30px 20px;
            }

            .video-container {
                padding: 30px 20px;
            }

            .video-header {
                flex-direction: column;
                text-align: center;
            }

            .video-header h3 {
                font-size: 1.3rem;
            }

            .reseller-hero {
                padding: 30px 20px;
            }

            .reseller-hero-content h3 {
                font-size: 1.6rem;
            }

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

            .requirements-container {
                grid-template-columns: 1fr;
            }

            .process-timeline {
                flex-direction: column;
            }

            .process-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }

            .reseller-cta-box {
                padding: 30px 20px;
            }

            .reseller-cta-box h3 {
                font-size: 1.7rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
            }

            .law-intro-box,
            .law-pillars,
            .timeline-diagram,
            .timeline-rules,
            .online-rules-grid,
            .risk-grid,
            .offline-rules-grid,
            .prohibited-examples,
            .golden-rule-box,
            .law-summary-box {
                padding: 30px 20px;
            }

            .law-pillars {
                grid-template-columns: 1fr;
            }

            .timeline-diagram {
                flex-direction: column;
            }

            .timeline-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }

            .timeline-rules {
                grid-template-columns: 1fr;
            }

            .online-rules-grid,
            .risk-grid,
            .offline-rules-grid {
                grid-template-columns: 1fr;
            }

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

            .golden-reasons {
                grid-template-columns: 1fr;
            }

            .principle-item {
                flex-direction: column;
                text-align: center;
            }

            .reseller-form-section {
                padding: 30px 20px;
            }

            .form-section {
                padding: 25px 15px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .form-submit {
                flex-direction: column;
            }

            .form-submit button {
                width: 100%;
            }

            .form-download-section {
                padding: 25px 15px;
            }

            .form-divider::before,
            .form-divider::after {
                width: 35%;
            }

            .election-type-tabs {
                gap: 10px;
            }

            .election-tab {
                padding: 10px 15px;
                font-size: 0.95rem;
            }

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

            .package-header h3 {
                font-size: 1.3rem;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .pricing-notice {
                padding: 20px 15px;
            }

            .pricing-notice p {
                font-size: 1rem;
            }

            .footer-contact {
                padding: 20px 15px;
            }

            .footer-ceo {
                font-size: 1.3rem;
            }

            .footer-info {
                font-size: 1rem;
                flex-direction: column;
                gap: 10px;
            }

            .contact-divider {
                display: none;
            }

            /* 추가 모바일 최적화 - 컴팩트 버전 */

            /* 히어로 섹션 모바일 최적화 */
            .hero {
                min-height: auto;
                padding: 70px 0 30px;
            }

            .hero-content {
                padding: 15px 12px;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 5px 12px;
                letter-spacing: 1px;
                margin-bottom: 12px;
            }

            h1 {
                font-size: 1.6rem !important;
                line-height: 1.25;
                margin-bottom: 12px;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 20px;
                line-height: 1.5;
            }

            .stat-highlight {
                font-size: 1.05em;
            }

            /* 버튼 터치 최적화 */
            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
                min-height: 44px;
                width: 100%;
                text-align: center;
            }

            .btn-primary, .btn-secondary {
                display: block;
                margin-bottom: 8px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 8px;
                padding: 0 5px;
            }

            /* 섹션 모바일 최적화 */
            .section {
                padding: 35px 0;
            }

            .section-title {
                font-size: 1.3rem;
                margin-bottom: 8px;
                padding: 0 5px;
            }

            .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 20px;
                padding: 0 5px;
                line-height: 1.5;
            }

            .container {
                padding: 0 10px;
            }

            /* 카드 모바일 최적화 */
            .problem-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-top: 20px;
            }

            .problem-card {
                padding: 16px 14px;
                border-radius: 12px;
            }

            .problem-icon {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .problem-card h3 {
                font-size: 1.05rem;
                margin-bottom: 8px;
            }

            .problem-card p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            /* 솔루션 모바일 최적화 */
            .solution-content {
                padding: 12px 10px;
            }

            .solution-number {
                font-size: 2.5rem;
                margin-bottom: 10px;
            }

            .solution-content h3 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .solution-content h4 {
                font-size: 0.9rem;
                margin-bottom: 8px;
            }

            .solution-features {
                margin-top: 15px;
            }

            .solution-features li {
                padding: 8px 0;
                padding-left: 22px;
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .solution-visual {
                padding: 25px 15px;
                min-height: 200px;
            }

            .solution-item {
                gap: 20px;
            }

            /* 통계 카드 모바일 최적화 */
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                margin-top: 25px;
            }

            .stat-card {
                padding: 16px 10px;
                border-radius: 12px;
            }

            .stat-value {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.8rem;
                margin-top: 5px;
            }

            /* CTA 섹션 모바일 최적화 */
            .cta-section {
                padding: 35px 15px;
            }

            .cta-section h2 {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .cta-section p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .cta-section .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            /* 비교 테이블 모바일 최적화 */
            .comparison {
                padding: 25px 10px;
                margin-top: 25px;
                border-radius: 12px;
            }

            .comparison-table {
                grid-template-columns: 1fr;
                margin-top: 20px;
            }

            .comparison-cell {
                padding: 12px 10px;
                font-size: 0.85rem;
            }

            .comparison-cell.header {
                font-size: 1rem;
            }

            /* 스크롤 인디케이터 숨김 */
            .scroll-indicator {
                display: none;
            }

            /* 전략 그리드 모바일 최적화 */
            .strategy-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-top: 20px;
            }

            .strategy-item {
                padding: 18px 14px;
                border-radius: 12px;
            }

            .highlight-card {
                padding: 20px 15px;
                margin-bottom: 20px;
                border-radius: 12px;
            }

            .highlight-card .strategy-icon {
                font-size: 2.5rem;
                margin-bottom: 10px;
            }

            .highlight-card h3 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .highlight-card p {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            /* 대시보드 목업 모바일 */
            .dashboard-mockup h4 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            .metric {
                padding: 12px;
                margin: 8px 0;
            }

            .metric-value {
                font-size: 1.6rem;
            }

            .metric-label {
                font-size: 0.8rem;
                margin-top: 5px;
            }

            /* 터치 친화적 요소 */
            button, a, .nav-button {
                -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
            }

            /* 가로 스크롤 방지 */
            body, html {
                overflow-x: hidden;
            }

            /* 입력 필드 모바일 최적화 */
            input, select, textarea {
                font-size: 16px !important;
                padding: 10px 12px;
            }

            /* 푸터 모바일 최적화 */
            footer {
                padding: 25px 10px 20px;
            }

            .footer-contact {
                padding: 15px 12px;
                margin-bottom: 20px;
            }

            .footer-ceo {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }

            .footer-info {
                font-size: 0.9rem;
            }

            .footer-links {
                gap: 15px;
                margin-top: 15px;
            }

            .footer-links a {
                font-size: 0.85rem;
            }

            .footer-content p {
                font-size: 0.8rem;
                margin-bottom: 10px;
            }

            /* 애니메이션 성능 최적화 */
            .problem-card:hover,
            .stat-card:hover,
            .strategy-item:hover {
                transform: none;
            }

            /* 간격 조정 */
            .solution-grid {
                gap: 20px;
                margin-top: 25px;
            }

            /* 비디오 컨테이너 */
            .video-container {
                padding: 15px 10px;
            }

            .video-header h3 {
                font-size: 1.1rem;
            }

            .video-wrapper {
                padding-bottom: 56.25%;
                position: relative;
                height: 0;
            }

            .video-wrapper iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            /* 추가 컴팩트 요소들 */
            .party-badge {
                padding: 6px 14px;
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .ratio-bar {
                height: 45px;
            }

            .ratio-fill {
                font-size: 0.9rem;
            }

            .law-intro-box,
            .law-pillars,
            .timeline-diagram,
            .timeline-rules,
            .online-rules-grid,
            .risk-grid,
            .offline-rules-grid,
            .prohibited-examples,
            .golden-rule-box,
            .law-summary-box {
                padding: 18px 12px;
            }

            .legal-warning-box {
                padding: 18px 12px;
            }

            .legal-warning-box h3 {
                font-size: 1rem;
            }

            .flowchart-box {
                padding: 18px 12px;
            }

            .legal-solution-box {
                padding: 18px 12px;
            }

            .reseller-hero {
                padding: 20px 12px;
            }

            .reseller-hero-content h3 {
                font-size: 1.3rem;
            }

            .benefits-grid {
                gap: 10px;
            }

            .benefit-item {
                padding: 14px 12px;
            }

            .reseller-cta-box {
                padding: 20px 12px;
            }

            .reseller-cta-box h3 {
                font-size: 1.3rem;
            }

            .btn-large {
                padding: 14px 20px;
                font-size: 0.95rem;
            }

            /* 폼 요소 컴팩트화 */
            .reseller-form-section {
                padding: 20px 12px;
            }

            .form-section {
                padding: 15px 10px;
                margin-bottom: 15px;
            }

            .form-section h4 {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            .form-group label {
                font-size: 0.85rem;
                margin-bottom: 4px;
            }

            .form-download-section {
                padding: 15px 10px;
            }

            /* 가격표 컴팩트화 */
            .pricing-grid {
                gap: 12px;
            }

            .pricing-card {
                padding: 18px 12px;
            }

            .package-header {
                padding: 15px 10px;
                margin: -18px -12px 15px;
            }

            .package-header h3 {
                font-size: 1.1rem;
            }

            .price-amount {
                font-size: 2rem;
            }

            .price-period {
                font-size: 0.8rem;
            }

            .package-features li {
                font-size: 0.85rem;
                padding: 6px 0;
            }

            .pricing-notice {
                padding: 15px 10px;
                margin-top: 20px;
            }

            .pricing-notice p {
                font-size: 0.85rem;
            }

            /* 선거 탭 컴팩트화 */
            .election-type-tabs {
                gap: 6px;
                margin-bottom: 20px;
            }

            .election-tab {
                padding: 8px 12px;
                font-size: 0.85rem;
            }

            /* 네비게이션 컴팩트화 */
            nav {
                padding: 12px 0;
            }

            nav.scrolled {
                padding: 10px 0;
            }

            .nav-links {
                top: 60px;
                height: calc(100vh - 60px);
                padding: 20px 15px;
                gap: 10px;
            }

            .nav-item > .nav-button {
                padding: 12px 15px;
                font-size: 1rem;
            }

            .dropdown-menu .nav-button {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        /* 더 작은 화면 (480px 이하) 추가 최적화 */
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem !important;
            }

            .hero {
                padding: 60px 0 20px;
            }

            .hero-content {
                padding: 10px 8px;
            }

            .hero-badge {
                font-size: 0.65rem;
                padding: 4px 10px;
                margin-bottom: 10px;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                margin-bottom: 15px;
            }

            .section {
                padding: 25px 0;
            }

            .section-title {
                font-size: 1.1rem;
            }

            .section-subtitle {
                font-size: 0.8rem;
                margin-bottom: 12px;
            }

            .container {
                padding: 0 8px;
            }

            .btn {
                padding: 10px 14px;
                font-size: 0.8rem;
                min-height: 40px;
            }

            .cta-buttons {
                gap: 6px;
            }

            .nav-container {
                padding: 0 8px;
            }

            .logo span {
                font-size: 1.1rem !important;
            }

            .problem-card {
                padding: 14px 12px;
            }

            .problem-icon {
                font-size: 1.8rem;
                margin-bottom: 8px;
            }

            .problem-card h3 {
                font-size: 0.95rem;
                margin-bottom: 6px;
            }

            .problem-card p {
                font-size: 0.8rem;
            }

            .stat-card {
                padding: 12px 8px;
            }

            .stat-value {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .strategy-item {
                padding: 14px 12px;
            }

            .solution-number {
                font-size: 2rem;
                margin-bottom: 8px;
            }

            .solution-content h3 {
                font-size: 1.05rem;
            }

            .solution-features li {
                padding: 6px 0;
                padding-left: 20px;
                font-size: 0.8rem;
            }

            .solution-visual {
                padding: 20px 12px;
                min-height: 180px;
            }

            .dashboard-mockup h4 {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .metric {
                padding: 10px 8px;
                margin: 6px 0;
            }

            .metric-value {
                font-size: 1.4rem;
            }

            .comparison {
                padding: 18px 8px;
            }

            .comparison-cell {
                padding: 10px 8px;
                font-size: 0.8rem;
            }

            .highlight-card {
                padding: 15px 12px;
            }

            .highlight-card .strategy-icon {
                font-size: 2rem;
            }

            .highlight-card h3 {
                font-size: 1.05rem;
            }

            .highlight-card p {
                font-size: 0.8rem;
            }

            .cta-section {
                padding: 25px 12px;
            }

            .cta-section h2 {
                font-size: 1.1rem;
            }

            .cta-section p {
                font-size: 0.8rem;
                margin-bottom: 15px;
            }

            .price-amount {
                font-size: 1.8rem;
            }

            .package-header h3 {
                font-size: 1rem;
            }

            .package-features li {
                font-size: 0.8rem;
                padding: 5px 0;
            }

            footer {
                padding: 20px 8px 15px;
            }

            .footer-contact {
                padding: 12px 10px;
            }

            .footer-ceo {
                font-size: 1rem;
            }

            .footer-info {
                font-size: 0.8rem;
            }

            /* 법률 관련 박스 */
            .law-intro-box,
            .law-pillars,
            .timeline-diagram,
            .timeline-rules,
            .online-rules-grid,
            .risk-grid,
            .offline-rules-grid,
            .prohibited-examples,
            .golden-rule-box,
            .law-summary-box,
            .legal-warning-box,
            .flowchart-box,
            .legal-solution-box {
                padding: 14px 10px;
            }

            /* 리셀러 관련 */
            .reseller-hero {
                padding: 15px 10px;
            }

            .reseller-hero-content h3 {
                font-size: 1.1rem;
            }

            .benefit-item {
                padding: 12px 10px;
            }

            .reseller-cta-box {
                padding: 15px 10px;
            }

            .reseller-cta-box h3 {
                font-size: 1.1rem;
            }

            .btn-large {
                padding: 12px 16px;
                font-size: 0.85rem;
            }

            /* 폼 요소 */
            .reseller-form-section,
            .form-section,
            .form-download-section {
                padding: 12px 8px;
            }

            /* 선거 탭 */
            .election-tab {
                padding: 6px 10px;
                font-size: 0.8rem;
            }

            /* 네비게이션 */
            nav {
                padding: 10px 0;
            }

            .nav-links {
                top: 55px;
                height: calc(100vh - 55px);
                padding: 15px 12px;
            }

            .nav-item > .nav-button {
                padding: 10px 12px;
                font-size: 0.9rem;
            }

            .dropdown-menu .nav-button {
                padding: 8px 20px;
                font-size: 0.85rem;
            }
        }

        /* Strategy Section Styles */
        .strategy-intro {
            margin-top: 60px;
        }

        .highlight-card {
            background: linear-gradient(135deg, var(--accent) 0%, #c9184a 100%);
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
        }

        .highlight-card .strategy-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .highlight-card h3 {
            font-size: 2.2rem;
            color: white;
            margin-bottom: 20px;
        }

        .highlight-card p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
        }

        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .strategy-item {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.5) 0%, rgba(10, 31, 20, 0.5) 100%);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }

        .strategy-item:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
        }

        .party-badge {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .party-badge.knp {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
        }

        .party-badge.dpk {
            background: linear-gradient(135deg, #047857 0%, #10b981 100%);
            color: white;
        }

        .ratio-display {
            margin: 30px 0;
        }

        .ratio-bar {
            display: flex;
            height: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .ratio-fill {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: white;
            transition: all 0.3s ease;
        }

        .knp-fill {
            background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
        }

        .dpk-fill {
            background: linear-gradient(135deg, #059669 0%, #34d399 100%);
        }

        .민심-fill {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
        }

        .strategy-points {
            list-style: none;
            margin-top: 30px;
        }

        .strategy-points li {
            padding: 15px 0;
            padding-left: 30px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .strategy-points li:last-child {
            border-bottom: none;
        }

        .strategy-points li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 900;
            font-size: 1.5rem;
        }

        .strategy-points li strong {
            color: var(--gold);
        }

        .solution-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .feature-box {
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(10, 40, 25, 0.1) 100%);
            padding: 35px;
            border-radius: 20px;
            border: 2px solid rgba(233, 69, 96, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 50px rgba(233, 69, 96, 0.4);
        }

        .feature-number {
            position: absolute;
            top: -20px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.3rem;
            color: white;
            box-shadow: 0 5px 20px rgba(233, 69, 96, 0.5);
        }

        .feature-box h4 {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 15px;
            margin-top: 10px;
        }

        .feature-box p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .feature-tag {
            display: inline-block;
            padding: 8px 18px;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid var(--gold);
            border-radius: 50px;
            color: var(--gold);
            font-size: 0.9rem;
            font-weight: 700;
        }

        /* Legal Section Styles */
        .video-container {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.5) 0%, rgba(10, 31, 20, 0.5) 100%);
            border: 2px solid var(--gold);
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .video-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .video-icon {
            font-size: 3rem;
        }

        .video-header h3 {
            font-size: 1.8rem;
            color: var(--gold);
            margin: 0;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
        }

        .video-thumbnail {
            transition: transform 0.3s ease;
        }

        .video-thumbnail:hover {
            transform: scale(1.02);
        }

        .play-button {
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            opacity: 0.9;
        }

        .video-description {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-top: 25px;
            line-height: 1.7;
        }

        .legal-warning-box {
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(255, 0, 0, 0.1) 100%);
            border: 3px solid var(--accent);
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
        }

        .warning-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            animation: pulse 2s ease-in-out infinite;
        }

        .legal-warning-box h3 {
            font-size: 1.5rem;
            color: white;
            line-height: 1.8;
        }

        .legal-risks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .legal-risk-card {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.5) 0%, rgba(10, 31, 20, 0.5) 100%);
            border-radius: 20px;
            padding: 35px;
            border: 2px solid;
            transition: all 0.3s ease;
        }

        .legal-risk-card.criminal {
            border-color: #dc2626;
        }

        .legal-risk-card.administrative {
            border-color: #f59e0b;
        }

        .legal-risk-card.civil {
            border-color: #8b5cf6;
        }

        .legal-risk-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(233, 69, 96, 0.4);
        }

        .risk-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .risk-icon {
            font-size: 2.5rem;
        }

        .risk-header h3 {
            font-size: 1.4rem;
            color: var(--gold);
            margin: 0;
        }

        .penalty-box {
            background: rgba(233, 69, 96, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        .penalty-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        .penalty-value {
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--accent);
            line-height: 1.6;
        }

        .legal-risk-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .legal-flowchart {
            margin-top: 80px;
        }

        .flowchart-box {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.3) 0%, rgba(10, 31, 20, 0.3) 100%);
            border-radius: 20px;
            padding: 50px;
            margin-top: 40px;
        }

        .flow-start {
            background: linear-gradient(135deg, var(--accent) 0%, #c9184a 100%);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
        }

        .flow-arrows {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .flow-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .arrow {
            font-size: 3rem;
            color: var(--gold);
            margin: 20px 0;
        }

        .violation-box {
            width: 100%;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid;
        }

        .violation-box.pipa {
            background: rgba(220, 38, 38, 0.2);
            border-color: #dc2626;
        }

        .violation-box.poea {
            background: rgba(245, 158, 11, 0.2);
            border-color: #f59e0b;
        }

        .violation-box.icna {
            background: rgba(59, 130, 246, 0.2);
            border-color: #3b82f6;
        }

        .violation-box.civil {
            background: rgba(139, 92, 246, 0.2);
            border-color: #8b5cf6;
        }

        .violation-box h4 {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .violation-box p {
            color: rgba(255, 255, 255, 0.9);
            margin: 10px 0;
            line-height: 1.7;
        }

        .penalty-badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 15px;
            font-size: 1.05rem;
        }

        .legal-comparison {
            margin-top: 80px;
        }

        .comparison-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .column-header {
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 30px;
        }

        .column-header.myth {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
        }

        .column-header.fact {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
        }

        .myth-list, .fact-list {
            list-style: none;
        }

        .myth-list li, .fact-list li {
            background: rgba(10, 40, 25, 0.3);
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 12px;
            border-left: 4px solid;
        }

        .myth-list li {
            border-left-color: #dc2626;
        }

        .fact-list li {
            border-left-color: #059669;
        }

        .myth-list li strong, .fact-list li strong {
            display: block;
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .myth-list li p, .fact-list li p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-top: 8px;
        }

        .legal-solution-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 40, 25, 0.2) 100%);
            border: 2px solid var(--gold);
            border-radius: 20px;
            padding: 50px;
            margin-top: 80px;
            text-align: center;
        }

        .legal-solution-box h3 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 25px;
        }

        .legal-solution-box p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .legal-cta {
            margin-top: 40px;
        }

        .legal-cta .btn {
            font-size: 1.2rem;
            padding: 20px 50px;
        }

        /* Reseller Section Styles */
        .reseller-hero {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(233, 69, 96, 0.2) 100%);
            border: 2px solid var(--gold);
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            text-align: center;
        }

        .reseller-hero-content h3 {
            font-size: 2.2rem;
            color: var(--gold);
            margin-bottom: 25px;
        }

        .reseller-hero-content p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.9;
        }

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

        .benefit-card {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.5) 0%, rgba(10, 31, 20, 0.5) 100%);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .benefit-card h4 {
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 25px;
        }

        .benefit-card ul {
            list-style: none;
        }

        .benefit-card ul li {
            padding: 12px 0;
            padding-left: 25px;
            position: relative;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .benefit-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 900;
        }

        .benefit-card ul li strong {
            color: white;
        }

        .requirements-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .requirements-column {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.4) 0%, rgba(10, 31, 20, 0.4) 100%);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid;
        }

        .requirements-column.essential {
            border-color: var(--accent);
        }

        .requirements-column.preferred {
            border-color: var(--gold);
        }

        .requirements-column .column-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .requirements-column .header-icon {
            font-size: 2.5rem;
        }

        .requirements-column .column-header h4 {
            font-size: 1.8rem;
            color: var(--gold);
            margin: 0;
        }

        .requirements-list {
            list-style: none;
        }

        .requirements-list li {
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border-left: 4px solid var(--gold);
        }

        .requirements-list li strong {
            display: block;
            font-size: 1.2rem;
            color: white;
            margin-bottom: 8px;
        }

        .requirements-list li p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin: 0;
        }

        .process-timeline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .process-step {
            flex: 1;
            min-width: 150px;
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
            border: 2px solid var(--gold);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: white;
            margin: 0 auto 20px;
            box-shadow: 0 5px 20px rgba(233, 69, 96, 0.5);
        }

        .step-content h4 {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .step-content p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .step-time {
            display: inline-block;
            padding: 6px 15px;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid var(--gold);
            border-radius: 50px;
            color: var(--gold);
            font-size: 0.9rem;
            font-weight: 700;
        }

        .process-arrow {
            font-size: 2.5rem;
            color: var(--gold);
            font-weight: 900;
        }

        .reseller-cta-box {
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.3) 0%, rgba(212, 175, 55, 0.3) 100%);
            border: 3px solid var(--gold);
            border-radius: 20px;
            padding: 60px;
            margin-top: 100px;
            text-align: center;
        }

        .reseller-cta-box h3 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .reseller-cta-box > p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .btn-large {
            font-size: 1.3rem;
            padding: 20px 50px;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .contact-info {
            padding-top: 40px;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
        }

        .contact-info p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin: 10px 0;
        }

        .contact-info strong {
            color: var(--gold);
        }

        /* Election Law Section Styles */
        .law-intro-box {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.6) 0%, rgba(10, 31, 20, 0.6) 100%);
            border: 2px solid var(--gold);
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            text-align: center;
        }

        .law-intro-box h3 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .law-intro-box p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        .law-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .pillar-card {
            background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(10, 40, 25, 0.15) 100%);
            border: 2px solid rgba(212, 175, 55, 0.4);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.3s ease;
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
        }

        .pillar-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .pillar-card h4 {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .pillar-card p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
        }

        .timeline-diagram {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .timeline-phase {
            flex: 1;
            min-width: 150px;
            background: rgba(10, 40, 25, 0.5);
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
        }

        .phase-number {
            width: 50px;
            height: 50px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--navy);
            margin: 0 auto 15px;
        }

        .timeline-phase h4 {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .timeline-phase p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .timeline-rules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .rule-box {
            border-radius: 15px;
            padding: 30px;
            border: 2px solid;
        }

        .rule-box.allowed {
            background: rgba(16, 185, 129, 0.1);
            border-color: #10b981;
        }

        .rule-box.forbidden {
            background: rgba(239, 68, 68, 0.1);
            border-color: #ef4444;
        }

        .rule-box h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .rule-box.allowed h4 {
            color: #10b981;
        }

        .rule-box.forbidden h4 {
            color: #ef4444;
        }

        .rule-box ul {
            list-style: none;
        }

        .rule-box ul li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
        }

        .rule-box.allowed ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 900;
        }

        .rule-box.forbidden ul li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ef4444;
            font-weight: 900;
        }

        .online-rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .online-rule-card {
            background: rgba(10, 40, 25, 0.4);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 35px;
        }

        .rule-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .online-rule-card h4 {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .online-rule-card p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .rule-status {
            margin-top: 25px;
        }

        .status-allowed, .status-forbidden {
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 12px;
        }

        .status-allowed {
            background: rgba(16, 185, 129, 0.15);
            border-left: 4px solid #10b981;
        }

        .status-forbidden {
            background: rgba(239, 68, 68, 0.15);
            border-left: 4px solid #ef4444;
        }

        .status-allowed strong {
            color: #10b981;
            font-size: 1.1rem;
        }

        .status-forbidden strong {
            color: #ef4444;
            font-size: 1.1rem;
        }

        .rule-warning {
            background: rgba(251, 191, 36, 0.2);
            border-left: 4px solid #fbbf24;
            padding: 15px;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 15px;
        }

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

        .risk-card {
            background: rgba(239, 68, 68, 0.1);
            border: 2px solid #ef4444;
            border-radius: 20px;
            padding: 35px;
        }

        .risk-icon-warning {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .risk-card h4 {
            font-size: 1.4rem;
            color: #ef4444;
            margin-bottom: 15px;
        }

        .risk-card p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .risk-note {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }

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

        .offline-rule-box {
            background: rgba(10, 40, 25, 0.4);
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 30px;
        }

        .offline-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .offline-rule-box h4 {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .offline-rule-box p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .prohibited-warning-box {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.3) 100%);
            border: 3px solid #ef4444;
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            text-align: center;
        }

        .prohibited-warning-box p {
            font-size: 1.2rem;
            color: white;
            line-height: 1.8;
        }

        .prohibited-examples {
            margin-top: 50px;
        }

        .prohibited-examples h4 {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 40px;
            text-align: center;
        }

        .prohibited-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .prohibited-item {
            background: rgba(239, 68, 68, 0.15);
            border: 2px solid #ef4444;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
        }

        .prohibited-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .prohibited-item h5 {
            font-size: 1.2rem;
            color: #ef4444;
            margin-bottom: 10px;
        }

        .prohibited-item p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .prohibited-note,
        .prohibited-emphasis,
        .prohibited-safe {
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .prohibited-note {
            background: rgba(251, 191, 36, 0.2);
            border-left: 4px solid #fbbf24;
            color: rgba(255, 255, 255, 0.9);
        }

        .prohibited-emphasis {
            background: rgba(239, 68, 68, 0.2);
            border-left: 4px solid #ef4444;
            color: white;
            font-weight: 700;
            text-align: center;
        }

        .prohibited-safe {
            background: rgba(16, 185, 129, 0.2);
            border-left: 4px solid #10b981;
            color: rgba(255, 255, 255, 0.9);
        }

        .golden-rule-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(233, 69, 96, 0.2) 100%);
            border: 3px solid var(--gold);
            border-radius: 20px;
            padding: 50px;
            margin: 40px 0;
        }

        .golden-icon {
            font-size: 4rem;
            text-align: center;
            margin-bottom: 20px;
        }

        .golden-rule-box h4 {
            font-size: 1.8rem;
            color: white;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .golden-reasons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .reason-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
        }

        .reason-item h5 {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .reason-item p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .contact-method {
            background: rgba(10, 40, 25, 0.5);
            border-radius: 12px;
            padding: 25px;
            margin-top: 30px;
        }

        .contact-method p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin: 10px 0;
        }

        .law-summary-box {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.6) 0%, rgba(233, 69, 96, 0.3) 100%);
            border: 3px solid var(--gold);
            border-radius: 20px;
            padding: 50px;
            margin-top: 100px;
        }

        .law-summary-box h3 {
            font-size: 2rem;
            color: var(--gold);
            text-align: center;
            margin-bottom: 50px;
        }

        .summary-principles {
            display: grid;
            gap: 25px;
        }

        .principle-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid var(--gold);
        }

        .principle-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .principle-content h5 {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .principle-content p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        .summary-conclusion {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-top: 40px;
            padding: 25px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 12px;
        }

        /* Reseller Application Form Styles */
        .reseller-form-section {
            margin-top: 100px;
            padding: 60px;
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.5) 0%, rgba(10, 31, 20, 0.5) 100%);
            border: 2px solid var(--gold);
            border-radius: 20px;
        }

        .form-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 50px;
        }

        .reseller-application-form {
            max-width: 900px;
            margin: 0 auto;
        }

        .form-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
        }

        .form-section-title {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }

        .section-number {
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 900;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 25px;
        }

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

        .form-group label {
            display: block;
            font-size: 1.1rem;
            color: white;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .required {
            color: var(--accent);
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group input[type="tel"]:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: var(--navy);
            color: white;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .checkbox-label:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .checkbox-label input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--gold);
        }

        .checkbox-label span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        .checkbox-label.agreement {
            background: transparent;
            padding: 15px 0;
        }

        .checkbox-label.agreement span {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .agreement-text {
            margin-top: 10px;
            padding: 15px;
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid #fbbf24;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .form-submit {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }

        .form-submit button {
            min-width: 200px;
        }

        .form-success-message {
            text-align: center;
            padding: 60px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
            border: 3px solid #10b981;
            border-radius: 20px;
        }

        .success-icon {
            font-size: 5rem;
            margin-bottom: 20px;
        }

        .form-success-message h3 {
            font-size: 2rem;
            color: #10b981;
            margin-bottom: 20px;
        }

        .form-success-message p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        /* Form Download Section Styles */
        .form-download-section {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(233, 69, 96, 0.2) 100%);
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 50px;
            text-align: center;
        }

        .download-text {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .download-text strong {
            color: var(--gold);
            font-size: 1.3rem;
        }

        .form-download-section .btn {
            margin: 20px 0;
            font-size: 1.2rem;
            padding: 18px 45px;
        }

        .download-note {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 15px;
        }

        .download-note strong {
            color: var(--gold);
        }

        .form-divider {
            text-align: center;
            margin: 50px 0;
            position: relative;
        }

        .form-divider::before,
        .form-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 2px;
            background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
        }

        .form-divider::before {
            left: 0;
        }

        .form-divider::after {
            right: 0;
        }

        .form-divider span {
            background: rgba(10, 31, 20, 0.9);
            padding: 0 20px;
            color: var(--gold);
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Pricing Section Styles */
        .election-type-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 50px 0;
            flex-wrap: wrap;
        }

        .election-tab {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: rgba(255, 255, 255, 0.8);
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .election-tab:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--gold);
            color: white;
        }

        .election-tab.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--navy);
        }

        .pricing-content {
            display: none;
        }

        .pricing-content.active {
            display: block;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background: linear-gradient(135deg, rgba(10, 40, 25, 0.5) 0%, rgba(10, 31, 20, 0.5) 100%);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
        }

        .pricing-card.recommended {
            border-color: var(--gold);
            border-width: 3px;
        }

        .recommended-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--accent);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: 900;
            font-size: 0.9rem;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.5);
        }

        .package-header {
            padding: 30px 25px;
            text-align: center;
            position: relative;
        }

        .package-header.package-a {
            background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
        }

        .package-header.package-b {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        }

        .package-header.package-c {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
        }

        .package-header.package-d {
            background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
        }

        .package-header h3 {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 10px;
        }

        .package-subtitle {
            font-size: 1.2rem;
            color: var(--gold);
            font-weight: 700;
        }

        .package-icon {
            font-size: 3rem;
            margin-top: 10px;
        }

        .package-price {
            padding: 35px 25px;
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }

        .price-unit {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-left: 5px;
        }

        .price-label {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
        }

        .package-description {
            padding: 25px;
            text-align: center;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .package-description p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .package-features {
            padding: 30px 25px;
        }

        .features-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.6;
        }

        .package-features ul {
            list-style: none;
        }

        .package-features ul li {
            padding: 12px 0;
            padding-left: 30px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            position: relative;
        }

        .package-features ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 900;
            font-size: 1.2rem;
        }

        .premium-features li::before {
            content: '';
        }

        .pricing-card .btn {
            width: calc(100% - 50px);
            margin: 0 25px 30px;
        }

        .pricing-notice {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
            border: 2px solid #8B5CF6;
            border-radius: 15px;
            padding: 25px;
            margin-top: 50px;
            text-align: center;
        }

        .pricing-notice p {
            font-size: 1.2rem;
            color: white;
            margin: 0;
        }

        .pricing-notice strong {
            color: var(--gold);
        }

        /* Scroll Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
