/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4aa; /* Mint Green */
    --primary-dark: #00b894;
    --primary-light: #4dd4b8; /* Lighter mint for accents */
    --secondary-color: #1a1a1a; /* Very Dark Gray */
    --accent-color: #ffffff; /* White for dark theme */
    --accent-secondary: #f8f9fa; /* Off-white for subtle contrast */
    --text-color: #e8e8e8; /* Slightly brighter light gray */
    --text-light: #b8b8b8; /* Medium Gray */
    --text-muted: #888888; /* Muted text for less important content */
    --background-color: #0d0d0d; /* Slightly lighter very dark background */
    --background-light: #1e1e1e; /* Dark Background */
    --background-card: #252525; /* Card background */
    --border-color: #404040; /* Lighter border for better definition */
    --border-light: #555555; /* Lighter border for subtle elements */
    --success-color: #28a745; /* Green for success states */
    --warning-color: #ffc107; /* Yellow for warnings */
    --error-color: #dc3545; /* Red for errors */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Global paragraph and heading styles */
p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--secondary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(0, 212, 170, 0.15);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.2);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: var(--transition);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--background-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.breadcrumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-item {
    color: var(--text-light);
}

.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-light) 0%, #0d1a1a 50%, var(--background-color) 100%);
    padding: 4rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 212, 170, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: bold;
}

/* Brand Introduction */
.brand-intro {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.brand-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: left;
}

.intro-content p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.intro-content p:first-child::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Font Awesome icon styling */
.fas.feature-img,
.fas.contact-img,
.fas.link-img {
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    margin: 0 auto;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Registration Process */
.registration-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-light) 100%);
    position: relative;
}

.registration-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-step {
    background: var(--background-card);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.step-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 1.5rem 0 1rem;
    font-weight: bold;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.step-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.step-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.step-cta {
    margin-top: 2rem;
}

.process-content {
    background: var(--background-card);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
}

.process-content h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 0 0 1.5rem 0;
    font-weight: bold;
    position: relative;
    padding-bottom: 1rem;
}

.process-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.process-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: var(--text-color);
    text-align: justify;
}

.process-content p:last-child {
    margin-bottom: 0;
}

.process-content h3:not(:first-child) {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Advantages & Security */
.advantages-security {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.advantages-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.advantage-item {
    background: var(--background-card);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.8rem;
}

.advantage-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: var(--transition);
}

.advantage-item:hover h3::after {
    width: 60px;
}

.advantage-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.advantage-item .advantage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
    color: var(--primary-light);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-card);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
}

.faq-question:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.2);
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--background-color) 100%);
    color: var(--accent-color);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 170, 0.1) 0%, transparent 50%, rgba(0, 212, 170, 0.05) 100%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--background-color);
    color: var(--accent-color);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--background-card) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        border-top: 3px solid var(--primary-color);
        border-radius: 0 0 15px 15px;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        color: var(--accent-color);
        padding: 1rem 1.5rem;
        margin: 0.5rem 0;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        transition: var(--transition);
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(0, 212, 170, 0.2);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    }
    
    .nav-actions {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .brand-intro {
        padding: 3rem 0;
    }
    
    .brand-intro,
    .features,
    .registration-process,
    .advantages-security,
    .faq,
    .cta {
        padding: 2rem 0;
    }
    
    .intro-content p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .intro-content p:first-child {
        font-size: 1.2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .process-content {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .process-content h3 {
        font-size: 1.5rem;
    }
    
    .process-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .advantage-item {
        padding: 2rem 1.5rem;
    }
    
    .advantage-item h3 {
        font-size: 1.2rem;
    }
    
    .advantage-item .advantage-icon {
        font-size: 2rem;
    }
    
    .our-story {
        padding: 3rem 0;
    }
    
    .story-text {
        padding: 2rem 1.5rem;
    }
    
    .story-text p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .mission-values {
        padding: 3rem 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .mission-item {
        padding: 2rem 1.5rem;
    }
    
    .mission-item h3 {
        font-size: 1.4rem;
    }
    
    .our-commitment {
        padding: 3rem 0;
    }
    
    .commitment-content p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .commitment-list {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .commitment-item {
        padding: 2rem 1.5rem;
    }
    
    .commitment-item h4 {
        font-size: 1.2rem;
    }
    
    .policy-content,
    .disclaimer-content,
    .support-content {
        padding: 3rem 0;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .policy-content h2,
    .disclaimer-content h2,
    .support-content h2 {
        font-size: 1.6rem;
    }
    
    .policy-content h3,
    .disclaimer-content h3,
    .support-content h3 {
        font-size: 1.3rem;
        padding: 0.8rem 0.8rem 0.8rem 1.2rem;
    }
    
    .policy-content p,
    .disclaimer-content p,
    .support-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .policy-content li,
    .disclaimer-content li,
    .support-content li {
        font-size: 1rem;
    }
    
    .support-intro {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .support-intro h2 {
        font-size: 1.6rem;
    }
    
    .support-intro p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .contact-methods {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-faq {
        padding: 3rem 0;
    }
    
    .support-faq .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .support-faq .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .support-hours {
        padding: 3rem 0;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-resources {
        padding: 3rem 0;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, var(--background-light) 0%, #0d1a1a 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Legal Pages Styling */
.policy-content,
.disclaimer-content,
.support-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.policy-content::before,
.disclaimer-content::before,
.support-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.legal-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--background-card);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 15px 15px 0 0;
}

.policy-content h2,
.disclaimer-content h2,
.support-content h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin: 0 0 2rem 0;
    font-weight: bold;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-content h2::after,
.disclaimer-content h2::after,
.support-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.policy-content h3,
.disclaimer-content h3,
.support-content h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem 0;
    font-weight: bold;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
    background: rgba(0, 212, 170, 0.05);
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.policy-content p,
.disclaimer-content p,
.support-content p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    text-align: justify;
}

.policy-content ul,
.disclaimer-content ul,
.support-content ul {
    margin: 1.5rem 0 2rem 0;
    padding-left: 0;
    list-style: none;
}

.policy-content li,
.disclaimer-content li,
.support-content li {
    margin-bottom: 1rem;
    color: var(--text-color);
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
}

.policy-content li::before,
.disclaimer-content li::before,
.support-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    top: 0;
}

.policy-content strong,
.disclaimer-content strong,
.support-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.policy-content a,
.disclaimer-content a,
.support-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.policy-content a:hover,
.disclaimer-content a:hover,
.support-content a:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-color);
}

.legal-highlight {
    background: rgba(0, 212, 170, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.legal-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--text-color);
}

/* About Us Page Specific Styles */
.our-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.story-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    background: var(--background-card);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    text-align: justify;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Mission and Values */
.mission-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.mission-item {
    background: var(--background-card);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.mission-item:hover::before {
    transform: scaleX(1);
}

.mission-item h3 {
    color: var(--accent-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 1rem;
}

.mission-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mission-item:hover h3::after {
    width: 80px;
}

.mission-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.mission-item ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.mission-item li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.mission-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    top: 0;
}

/* Commitment */
.our-commitment {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.our-commitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.commitment-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--text-color);
    text-align: justify;
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.commitment-item {
    background: var(--background-card);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary-light);
}

.commitment-item:hover::before {
    transform: scaleX(1);
}

.commitment-item h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.8rem;
}

.commitment-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: var(--transition);
}

.commitment-item:hover h4::after {
    width: 60px;
}

.commitment-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

/* Support Page Specific Styles */
.support-intro {
    background: var(--background-card);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    border-radius: 15px 15px 0 0;
}

.support-intro h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 1rem;
}

.support-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.support-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.contact-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contact-card h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Support FAQ */
.support-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.support-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.support-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.support-faq .faq-list {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.support-faq .faq-item {
    background: var(--background-card);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.support-faq .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.support-faq .faq-question {
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--background-light) 100%);
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
    position: relative;
}

.support-faq .faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.support-faq .faq-question:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--accent-color);
}

.support-faq .faq-question:hover::after {
    transform: translateY(-50%) rotate(45deg);
}

.support-faq .faq-answer {
    padding: 0 2rem 2rem;
    display: none;
    background: var(--background-card);
}

.support-faq .faq-answer.active {
    display: block;
}

.support-faq .faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

/* Support Hours */
.support-hours {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.support-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hours-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hours-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
}

.hours-item h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.hours-item p {
    color: var(--text-light);
    margin: 0;
}

/* Additional Resources */
.additional-resources {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.additional-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.resource-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.resource-item h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.resource-item ul {
    list-style: none;
    margin: 0;
}

.resource-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.resource-item li:last-child {
    border-bottom: none;
}

/* 404 Error Page */
.error-404 {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #0d1a1a 100%);
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-visual {
    margin-bottom: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-icon {
    margin-bottom: 2rem;
}

.error-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.error-title {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.error-sub-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Helpful Links */
.helpful-links {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.link-icon {
    margin-bottom: 1.5rem;
}

.link-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.link-card h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.link-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Search Section */
.search-section {
    padding: 3rem 0;
    background-color: var(--background-light);
}

.search-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.search-suggestion {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--background-card);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

.search-suggestion:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

/* Breadcrumb current */
.breadcrumb-current {
    color: var(--text-light);
}

/* Print styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        background: white;
        color: black;
    }
    
    .hero-title,
    .section-title,
    .page-title,
    h1, h2, h3, h4, h5, h6 {
        color: black;
    }
    
    .feature-card,
    .advantage-item,
    .faq-item,
    .mission-item,
    .contact-card,
    .resource-item,
    .link-card {
        background: white;
        border: 1px solid #ddd;
    }
}
