/* WinMatch Casino - Modern Gaming Platform Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: linear-gradient(90deg, #a8edea 0%, #fed6e3 100%);
    padding: 10px 0;
    border-bottom: 1px solid #d1d5db;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff5252, #ff7043);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
}

.btn-login {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-login:hover {
    background: rgba(255,255,255,0.2);
}

.btn-register {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1e3c72;
}

.btn-register:hover {
    background: linear-gradient(45deg, #ffed4e, #fff176);
    transform: translateY(-1px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text-content {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title-section {
    flex: 1;
}

.hero-description-section {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 3;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

section:nth-child(odd) {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2d3748;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a365d;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

/* Brand Introduction */
.brand-intro {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.brand-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.7;
}

/* Platform Features */
.platform-features {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #667eea;
}

.feature-card p {
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

/* Registration Process */
.registration-process {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.process-image {
    text-align: center;
}

.process-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.process-image img:hover {
    transform: translateY(-5px);
}

.process-content {
    max-width: none;
    margin: 0;
}

.process-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #2d3748;
    font-weight: 500;
}

/* Advantages & Security */
.advantages-security {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
}

.advantage-item h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

/* Advantage Icon Styles */
.advantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.license-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.support-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.payment-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.responsible-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Advantage Icon Font Styles */
.icon-shield-check::before {
    content: "🛡️";
    font-size: 2rem;
}

.icon-headset::before {
    content: "🎧";
    font-size: 2rem;
}

.icon-credit-card::before {
    content: "💳";
    font-size: 2rem;
}

.icon-heart-shield::before {
    content: "❤️";
    font-size: 2rem;
}

/* Support Page Icon Styles */
.support-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.chat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.email-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.phone-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Support Icon Font Styles */
.icon-chat::before {
    content: "💬";
    font-size: 2.2rem;
}

.icon-email::before {
    content: "📧";
    font-size: 2.2rem;
}

.icon-phone::before {
    content: "📞";
    font-size: 2.2rem;
}

/* FAQ Icon Styles */
.faq-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.faq-icon:hover {
    transform: translateY(-2px);
}

.password-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.withdrawal-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.verification-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.payment-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* FAQ Icon Font Styles */
.icon-key::before {
    content: "🔑";
    font-size: 1.8rem;
}

.icon-money::before {
    content: "💰";
    font-size: 1.8rem;
}

.icon-id-card::before {
    content: "🆔";
    font-size: 1.8rem;
}

.icon-credit-card::before {
    content: "💳";
    font-size: 1.8rem;
}

/* Topic Icon Styles */
.topic-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.topic-icon:hover {
    transform: translateY(-3px);
}

.account-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banking-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gaming-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.technical-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Topic Icon Font Styles */
.icon-user-gear::before {
    content: "👤";
    font-size: 2rem;
}

.icon-bank::before {
    content: "🏦";
    font-size: 2rem;
}

.icon-gamepad::before {
    content: "🎮";
    font-size: 2rem;
}

.icon-settings::before {
    content: "⚙️";
    font-size: 2rem;
}

/* 404 Page Icon Styles */
.error-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    font-size: 4rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.icon-404::before {
    content: "🔍";
    font-size: 4rem;
}

/* Link Icon Styles */
.link-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.link-icon:hover {
    transform: translateY(-2px);
}

.about-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.support-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.privacy-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.terms-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Link Icon Font Styles */
.icon-info::before {
    content: "ℹ️";
    font-size: 1.8rem;
}

.icon-headset::before {
    content: "🎧";
    font-size: 1.8rem;
}

.icon-shield::before {
    content: "🛡️";
    font-size: 1.8rem;
}

.icon-document::before {
    content: "📄";
    font-size: 1.8rem;
}

.security-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.security-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #667eea;
}

.security-section p {
    color: #4a5568;
    font-weight: 400;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #667eea;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

.faq-item p {
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 20px;
    border-top: 2px solid #f093fb;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #f093fb;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: #cbd5e0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .auth-buttons {
        margin-top: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text-content {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-image {
        grid-column: 1;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .hero-image img {
        max-width: 350px;
        aspect-ratio: 2/3;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .process-image img {
        max-width: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .hero-image img {
        max-width: 280px;
        aspect-ratio: 2/3;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .process-image img {
        max-width: 300px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border: 2px solid #000;
    }
}

/* Additional Page Styles */

/* General Text Styles for Better Readability */
p {
    color: #2d3748;
    font-weight: 400;
    line-height: 1.6;
}

strong {
    color: #1a365d;
    font-weight: 600;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-description {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Policy Content Styles */
.policy-content {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 80px 0;
}

.policy-section {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.policy-section h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.policy-section h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2d3748;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-top: 20px;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
}

/* Support Page Styles */
.support-content {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.support-method {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.support-method h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.support-method p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

.support-features ul {
    text-align: left;
    margin-bottom: 30px;
}

.support-features li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 400;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

/* Help Topics */
.help-topics {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 60px 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.topic-category {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    border: 1px solid #e2e8f0;
}

.topic-category h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.topic-category ul {
    list-style: none;
    padding-left: 0;
}

.topic-category li {
    margin-bottom: 8px;
    font-size: 1rem;
    padding-left: 15px;
    position: relative;
    color: #4a5568;
    font-weight: 400;
}

.topic-category li::before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
}

/* Error Page Styles */
.error-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-code h1 {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 0;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.error-code h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.error-message {
    margin-bottom: 40px;
}

.error-message p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.error-image {
    margin: 40px 0;
}

.error-actions {
    margin: 40px 0;
}

.helpful-links {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.helpful-links h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffd700;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.link-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.link-item:hover {
    background: rgba(255,255,255,0.2);
}

.link-item a {
    color: white;
    text-decoration: none;
}

.link-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.link-item p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.search-suggestion {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.search-suggestion h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.search-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.search-link {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.search-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* About Page Specific Styles */
.our-story {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #2d3748;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-values {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-item:hover {
    transform: translateY(-10px);
}

/* Value Icon Styles */
.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.value-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.security-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fairness-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.innovation-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.community-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Icon Font Styles */
.icon-shield::before {
    content: "🛡️";
    font-size: 2.5rem;
}

.icon-balance::before {
    content: "⚖️";
    font-size: 2.5rem;
}

.icon-lightbulb::before {
    content: "💡";
    font-size: 2.5rem;
}

.icon-users::before {
    content: "👥";
    font-size: 2.5rem;
}

.value-item h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.our-mission {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mission-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    border: 1px solid #e2e8f0;
}

.mission-item h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.why-choose-us {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 80px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.choose-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
}

.choose-item p {
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

.choose-item h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .error-code h1 {
        font-size: 6rem;
    }
    
    .error-code h2 {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .search-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .policy-section {
        padding: 0 15px;
    }
    
    .support-method {
        padding: 30px 20px;
    }
    
    .error-code h1 {
        font-size: 4rem;
    }
    
    .error-code h2 {
        font-size: 1.5rem;
    }
}