:root {
    --primary-color: #4DB5DA;
    --title-color: #003D3C;
    --text-color: #246665;
    --gray-color: #F5F5F5;
    --purple-light: #f3e8ff;
    --purple-dark: #7c3aed;
}

/* Header Styles */
.home-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.home-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
}

.home-header-logo {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.home-header-logo:hover {
    opacity: 0.8;
}

.home-header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.home-header-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.home-header-link:hover {
    color: #6366f1;
}

.home-header-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #17a2b8 100%);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(77, 181, 218, 0.25);
}

.home-header-btn:hover {
    background: linear-gradient(135deg, #3da3c7 0%, #138fa3 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 181, 218, 0.35);
    color: white;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
}

.titles-color {
    color: var(--title-color);
}

.text-color {
    color: var(--text-color);
}

#main {
    min-height: 95vh;
}

/* Utility Classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-8 { padding-top: 2rem; }
.pb-5 { padding-bottom: 1.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.leading-tight { line-height: 1.25; }
.bg-white { background-color: white; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 90px;
    padding-left: 90px;
}

section > .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.banner-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}	

.banner-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gray-bg {
    background-color: var(--gray-color);
}

.mockup-image {
    min-width: 600px;
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-color) 0%, #17a2b8 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(77, 181, 218, 0.25);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 181, 218, 0.35);
    color: white;
}

.step-mw {
    flex-basis: 50%;
    max-width: 50%;
}

.benefit-icon {
    padding: 10px;
    border-radius: 50%;
    background-color: var(--gray-color);
}

.benefit-icon img {
    min-width: 25px;
    min-height: 25px;
    width: 24px;
    height: 24px;
}

.cards-shadow {
    box-shadow: 0px 4px 8px 0px rgba(26, 26, 26, 0.10);
}

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

/* Demo Section Styles */
.demo-section {
    padding: 5rem 0;
}

.demo-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.demo-badge {
    display: inline-block;
    background-color: rgba(77, 181, 218, 0.15);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.demo-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.demo-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.demo-course-card {
    text-align: center;
}

.demo-course-icon {
    display: inline-block;
    background: linear-gradient(135deg, #4db5da 0%, #17a2b8 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(77, 181, 218, 0.3);
}

.demo-course-icon svg {
    width: 64px;
    height: 64px;
    color: white;
    display: block;
    margin: 0 auto;
}

.demo-badge-small {
    display: inline-block;
    background-color: var(--purple-light);
    color: var(--purple-dark);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.demo-course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.demo-course-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.demo-course-stats span {
    font-weight: 700;
    color: var(--primary-color);
}

.demo-features-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.demo-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.demo-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: rgba(77, 181, 218, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.demo-feature-text {
    color: #374151;
    line-height: 1.5;
}

.demo-cta-section {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.demo-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3da3c7 100%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 3rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(77, 181, 218, 0.3);
}

.demo-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77, 181, 218, 0.4);
    color: white;
}

.demo-cta-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .mockup-image {
        min-width: 100%;
        max-width: 100%;
    }

    .mobile-col {
        flex-direction: column;
    }

    .step-mw {
        flex-basis: 100%;
        max-width: 100%;
    }

    section > .container, .container {
        padding-right: 20px;
        padding-left: 20px;
    }
    
    .hit-title {
        text-align: left;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    section > .container, .container {
        padding-right: 20px;
        padding-left: 20px;
    }
    
    .demo-card {
        padding: 1.5rem;
    }
    
    .demo-title {
        font-size: 1.5rem;
    }
}

/* Comparison Table Styles */
.comparison-section {
    background: #f5f5f5;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-title-brand {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead tr {
    background: #f8f9fa;
}

.comparison-table th {
    padding: 1.5rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    text-align: left;
    color: #6b7280;
}

.comparison-table th:nth-child(2) {
    text-align: center;
    background: linear-gradient(135deg, #6366f1 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table th:nth-child(3) {
    text-align: center;
    color: #9ca3af;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

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

.comparison-table td {
    padding: 1rem 2rem;
    border-bottom: 1px solid #e2e2e2;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1f2937;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    text-align: center;
}

.comparison-check {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.comparison-check.check-yes {
    background: rgba(77, 181, 218, 0.15);
    color: var(--primary-color);
}

.comparison-check.check-no {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

@media (max-width: 767px) {
    .comparison-title {
        font-size: 1.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.75rem;
    }
    
    .comparison-check {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: #f8f9fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4db5da;
    line-height: 1;
}

.footer-app {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-badge {
    display: block;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-2px);
}

.app-badge img {
    height: 48px;
    width: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
}

.footer-disclaimer h4 {
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    color: #4b5563;
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0 0 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-app {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* How IQNEST Works Section */
.how-works-section {
    background: white;
}

.how-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-works-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.how-works-title-brand {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-works-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-works-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.how-works-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(77, 181, 218, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.step-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #17a2b8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.step-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-card-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.step-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.step-progress {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.step-progress-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.step-progress-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.step-progress-bar {
    width: 100%;
    height: 12px;
    background: #f3f4f6;
    border-radius: 999px;
    overflow: hidden;
}

.step-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #17a2b8 100%);
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Game Card Styles */
.game-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.game-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #17a2b8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.game-category {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.game-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.game-tile {
    aspect-ratio: 1;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.game-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 181, 218, 0.4);
}

.game-tile.inactive {
    background: #f3f4f6;
    color: #d1d5db;
}

@media (max-width: 767px) {
    .game-card {
        padding: 1.5rem;
    }
    
    .game-grid {
        gap: 0.5rem;
    }
    
    .game-tile {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .how-works-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .home-header-container {
        padding: 0 1rem;
    }
    
    .home-header-logo span {
        font-size: 1.5rem !important;
    }
    
    .home-header-nav {
        gap: 1rem;
    }
    
    .home-header-link,
    .home-header-btn {
        font-size: 0.875rem;
    }
    
    .home-header-btn {
        padding: 0.5rem 1.25rem;
    }
    
    .how-works-title {
        font-size: 2rem;
    }
    
    .how-works-subtitle {
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}

/* ===== PRIVACY POLICY STYLES ===== */
.privacy-policy-container {
    min-height: 100vh;
    background: white;
    padding: 40px 20px 60px;
}

.privacy-logo {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 30px;
}

.privacy-logo a {
    text-decoration: none;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 0 20px;
}

.privacy-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color, #4DB5DA);
    padding-bottom: 20px;
}

.privacy-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.privacy-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color, #4DB5DA);
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.privacy-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.intro {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid var(--primary-color, #4DB5DA);
    border-radius: 4px;
}

.important-info {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.important-info h2 {
    color: #856404;
    margin-top: 0;
    border-bottom: 2px solid #ffc107;
}

.important-notice {
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    color: #721c24;
}

.policy-section {
    margin: 40px 0;
}

.table-of-contents {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.table-of-contents h3 {
    color: #1976d2;
    margin-top: 0;
}

.table-of-contents ol {
    margin: 15px 0 0 20px;
    padding: 0;
}

.table-of-contents li {
    margin: 10px 0;
    line-height: 1.6;
}

.table-of-contents a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.table-of-contents a:hover {
    color: var(--primary-color, #4DB5DA);
    text-decoration: underline;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-content li {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #555;
    margin: 8px 0;
}

.privacy-content a {
    color: var(--primary-color, #4DB5DA);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.privacy-content a:hover {
    color: #3a9dbd;
    text-decoration: underline;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.purposes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.purposes-table thead {
    background: var(--primary-color, #4DB5DA);
    color: white;
}

.purposes-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
}

.purposes-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: top;
}

.purposes-table tbody tr:hover {
    background: #f8f9fa;
}

.contact-section {
    background: #e8f5e9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.contact-section h2 {
    color: #2e7d32;
    border-bottom: none;
}

.copyright {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
}

.footnote {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
}

.footnote p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .privacy-logo {
        padding: 20px 0;
    }
    
    .privacy-logo span {
        font-size: 2rem !important;
    }
    
    .privacy-content {
        padding: 0 15px;
    }
    
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h2 {
        font-size: 1.4rem;
    }
    
    .purposes-table {
        font-size: 0.85rem;
    }
    
    .purposes-table th,
    .purposes-table td {
        padding: 10px 8px;
    }
}

/* ===== SUPPORT CENTER STYLES ===== */
.support-form-container {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.required {
    color: #dc3545;
}

.form-control {
    font-family: 'Poppins', sans-serif;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color, #4DB5DA);
    box-shadow: 0 0 0 3px rgba(77, 181, 218, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.error-message {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 4px;
}

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

.submit-btn {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color, #4DB5DA) 0%, #3a9dbd 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(77, 181, 218, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 181, 218, 0.4);
}

.support-success {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #155724;
}

.support-success i {
    font-size: 1.5rem;
    color: #28a745;
}

.support-success p {
    margin: 0;
    font-weight: 500;
}

.support-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #721c24;
}

.support-error i {
    font-size: 1.5rem;
    color: #dc3545;
}

.support-error p {
    margin: 0;
    font-weight: 500;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.contact-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--primary-color, #4DB5DA);
    margin-bottom: 12px;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 12px 0 8px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .support-form-container {
        padding: 24px;
        margin: 24px auto;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .submit-btn {
        width: 100%;
    }
}