/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000; /* Black text on light backgrounds */
    background-color: #EBEAFF; /* Very light pastel lavender - main background */
}

/* Color Palette Variables */
:root {
    --color-light-lavender: #EBEAFF; /* Very light pastel lavender - main backgrounds */
    --color-mid-lavender: #9694FF;   /* Light-mid lavender blue - secondary sections */
    --color-vibrant-blue: #3D3BFF;   /* Vibrant blue - primary buttons/CTAs */
    --color-dark-blue: #2929FF;      /* Very dark blue - headers, footers */
    --text-light: #000000;           /* Black text for light backgrounds */
    --text-dark: #FFFFFF;            /* White text for dark backgrounds */
}

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

/* Header Styles */
header {
    background: var(--color-dark-blue); /* Very dark blue for header */
    color: var(--text-dark); /* White text on dark background */
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(41, 41, 255, 0.2);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

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

.nav-brand img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark); /* White text on dark background */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    background-color: var(--color-vibrant-blue); /* Vibrant blue hover state */
    color: var(--text-dark);
    transform: translateY(-1px);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: var(--color-vibrant-blue);
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    position: relative;
}

.mobile-menu-btn:hover {
    background: var(--color-dark-blue);
    transform: scale(1.05);
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--text-dark);
    outline-offset: 2px;
}

.mobile-menu-btn[aria-expanded="true"] {
    background: var(--color-dark-blue);
}

.mobile-menu-btn[aria-expanded="true"]::before {
    content: "✕";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.mobile-menu-btn[aria-expanded="false"]::before {
    content: "☰";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #b91c1c; /* Darker red for primary button */
    color: white;
    border-color: #b91c1c;
}

.btn-primary:hover {
    background: #991b1b; /* Even darker red on hover */
    border-color: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fca5a5; /* Light red text for outline button */
    border-color: #fca5a5;
}

.btn-outline:hover {
    background: #fca5a5; /* Light red background on hover */
    color: #dc2626; /* Dark red text on light red background */
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: var(--color-mid-lavender); /* Light-mid lavender for breadcrumb */
    color: var(--text-light); /* Black text on light background */
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-vibrant-blue);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    margin-right: 0.5rem;
}

.breadcrumb li:after {
    content: ">";
    margin-left: 0.5rem;
    color: #6c757d;
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a {
    color: var(--color-dark-blue); /* Dark blue links on light background */
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--color-vibrant-blue); /* Vibrant blue on hover */
    text-decoration: underline;
}

/* Main Content Styles */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: #dc2626; /* Red background as described in the image */
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--color-mid-lavender); /* Light-mid lavender for alternating sections */
    color: var(--text-light); /* Black text on light background */
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-dark-blue); /* Dark blue headings */
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-vibrant-blue); /* Vibrant blue for subheadings */
}

section h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--color-vibrant-blue); /* Vibrant blue for h4 */
}

/* About Section */
.about {
    background: var(--color-light-lavender); /* Very light lavender for about section */
    color: var(--text-light); /* Black text on light background */
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: var(--color-light-lavender); /* Very light lavender for features section */
    color: var(--text-light); /* Black text on light background */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--color-mid-lavender); /* Light-mid lavender for cards */
    color: var(--text-light); /* Black text on light background */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(150, 148, 255, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-vibrant-blue);
    box-shadow: 0 8px 25px rgba(61, 59, 255, 0.3);
}

.feature-card h3 {
    color: var(--color-dark-blue); /* Dark blue for card headings */
    margin-bottom: 1rem;
}

/* Registration Process */
.register-section {
    background: var(--color-light-lavender); /* Very light lavender for registration section */
    color: var(--text-light); /* Black text on light background */
    padding: 4rem 0;
}

.register-content {
    max-width: 800px;
    margin: 0 auto;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-card {
    background: var(--color-mid-lavender);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 59, 255, 0.15);
    border-color: var(--color-vibrant-blue);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-vibrant-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(61, 59, 255, 0.3);
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.step-content h4 {
    color: var(--color-dark-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.step-content strong {
    color: var(--color-dark-blue);
    font-weight: 700;
}

.hero-image-register {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-image-register img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image-register img:hover {
    transform: scale(1.05);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-vibrant-blue); /* Vibrant blue for CTA section */
    color: var(--text-dark); /* White text on vibrant background */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(61, 59, 255, 0.2);
}

.cta-section .btn {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-top: 1rem;
    color: var(--text-dark);
}

.cta-section a {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
}

.cta-section a:hover {
    color: var(--color-mid-lavender);
}

/* Login Process */
.login-section {
    background: var(--color-mid-lavender); /* Light-mid lavender for login section */
    color: var(--text-light); /* Black text on light background */
    padding: 4rem 0;
}

.login-content {
    max-width: 800px;
    margin: 0 auto;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-image-login {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.hero-image-login img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image-login img:hover {
    transform: scale(1.05);
}

.benefits {
    background: var(--color-light-lavender); /* Very light lavender for benefits */
    color: var(--text-light); /* Black text on light background */
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid var(--color-vibrant-blue);
}

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

.benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-vibrant-blue); /* Vibrant blue for checkmarks */
    font-weight: bold;
}

/* Security Section */
.security {
    background: var(--color-light-lavender); /* Very light lavender for security section */
    color: var(--text-light); /* Black text on light background */
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background: var(--color-mid-lavender); /* Light-mid lavender for security cards */
    color: var(--text-light); /* Black text on light background */
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--color-vibrant-blue);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 59, 255, 0.2);
}

.security-card h3 {
    color: var(--color-dark-blue); /* Dark blue for security card headings */
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    background: var(--color-mid-lavender); /* Light-mid lavender for FAQ section */
    color: var(--text-light); /* Black text on light background */
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-light-lavender); /* Very light lavender for FAQ items */
    color: var(--text-light); /* Black text on light background */
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(150, 148, 255, 0.2);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-vibrant-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 59, 255, 0.3);
}

.faq-item h3 {
    background: var(--color-dark-blue); /* Dark blue for FAQ question headers */
    color: var(--text-dark); /* White text on dark background */
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background: var(--color-vibrant-blue); /* Vibrant blue on hover */
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-light); /* Black text on light background */
}

/* Final CTA */
.final-cta {
    background: var(--color-dark-blue); /* Dark blue for final CTA */
    color: var(--text-dark); /* White text on dark background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-vibrant-blue) 100%);
    opacity: 0.9;
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    color: var(--text-dark); /* White text on dark background */
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Styles */
footer {
    background: var(--color-dark-blue); /* Dark blue for footer */
    color: var(--text-dark); /* White text on dark background */
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-mid-lavender); /* Light-mid lavender for footer headings */
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-mid-lavender); /* Light-mid lavender for footer links */
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--text-dark); /* White text on hover */
    transform: translateX(5px);
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-vibrant-blue);
    padding-top: 1rem;
    text-align: center;
    color: var(--color-mid-lavender); /* Light-mid lavender for footer bottom text */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
        order: 2;
        margin-left: auto;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-dark-blue);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 0 0 10px 10px;
    }
    
    .nav-menu.active {
        display: flex !important;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-menu li {
        margin: 0.3rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 6px;
        text-align: center;
        width: 100%;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: var(--color-vibrant-blue);
        transform: translateX(5px);
    }
    
    .auth-buttons {
        order: 3;
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }
    
    .auth-buttons .btn {
        flex: 1;
        max-width: 200px;
        text-align: center;
    }
    
    .nav-brand {
        order: 1;
    }
    
    /* Tablet-specific hero adjustments */
    .hero-content {
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile Fixes */
    .hero {
        background: #dc2626; /* Keep red background on mobile */
        padding: 2rem 0;
        min-height: 70vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 280px;
        height: auto;
        border-radius: 15px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-buttons {
        justify-content: center;
    }
    
    /* Ensure proper contrast on mobile */
    .feature-card,
    .security-card {
        border: 1px solid var(--color-vibrant-blue);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.5rem 0;
        min-height: 60vh;
    }
    
    /* Mobile menu adjustments for very small screens */
    .nav-menu {
        padding: 0.5rem;
    }
    
    .nav-menu a {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .auth-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero h1,
    .hero p,
    .hero-buttons {
        animation: none !important;
    }
}

/* Ensure sufficient color contrast */
.hero h1,
.hero p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-vibrant-blue);
    color: var(--text-dark);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.3s;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced focus indicators */
.btn:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-vibrant-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(61, 59, 255, 0.3);
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
    outline: 2px solid var(--color-vibrant-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: var(--color-dark-blue);
        color: var(--text-dark);
        border-color: var(--color-dark-blue);
    }
    
    .btn-outline {
        background: var(--text-dark);
        color: var(--color-dark-blue);
        border-color: var(--text-dark);
    }
}

/* Modern Design Enhancements */
.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Enhanced button styles */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Card hover effects */
.feature-card,
.security-card,
.faq-item {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-vibrant-blue), var(--color-dark-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before,
.security-card:hover::before {
    opacity: 0.1;
}

.feature-card > *,
.security-card > * {
    position: relative;
    z-index: 2;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-mid-lavender);
    z-index: 1000;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-vibrant-blue);
    width: var(--scroll-width, 0%);
    transition: width 0.1s ease;
}

/* Additional Page Styles */

/* About Us Page Styles */
.about-story, .mission, .values, .team, .why-choose {
    background: white;
    padding: 4rem 0;
}

.story-content, .mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.mission-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.team-feature h3 {
    color: #2a5298;
    margin-bottom: 1rem;
}

.choose-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.choose-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.choose-point {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.choose-point h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

/* Privacy Policy and Terms Pages */
.privacy-content, .terms-content, .disclaimer-content {
    background: white;
    padding: 4rem 0;
}

.privacy-intro, .terms-intro, .disclaimer-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.privacy-section, .terms-section, .disclaimer-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-section:last-child, .terms-section:last-child, .disclaimer-section:last-child {
    border-bottom: none;
}

.privacy-section h2, .terms-section h2, .disclaimer-section h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.privacy-section h3, .terms-section h3, .disclaimer-section h3 {
    color: #2a5298;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.privacy-section ul, .terms-section ul, .disclaimer-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li, .terms-section li, .disclaimer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Support Page Styles */
.support-content {
    background: white;
    padding: 4rem 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-method {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.support-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-method h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.support-details {
    margin: 1.5rem 0;
    text-align: left;
}

.support-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.support-topics {
    margin-bottom: 4rem;
}

.support-topics h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.topic-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.topic-card h3 {
    color: #2a5298;
    margin-bottom: 1rem;
}

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

.topic-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.topic-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.support-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 2px rgba(42, 82, 152, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .values-grid,
    .team-features,
    .choose-points,
    .support-methods,
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .privacy-section h2,
    .terms-section h2,
    .disclaimer-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3,
    .terms-section h3,
    .disclaimer-section h3 {
        font-size: 1.2rem;
    }
    
    /* Registration and Login Steps Responsive */
    .registration-steps,
    .login-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-icon {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .hero-image-register {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-register img {
        max-width: 250px;
        margin-bottom: 1rem;
    }
    
    .hero-image-login img {
        max-width: 250px;
    }
    
    .register-content,
    .login-content {
        max-width: 100%;
        padding: 0 1rem;
    }
}
