/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00712D;
    --secondary-color: #D5ED9F;
    --accent-color: #FF9100;
    --light-bg: #FFFBE6;
    --white: #ffffff;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
}

.navbar {
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    min-height: 70px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    padding-left: 20px;
    transition: var(--transition);
}

.nav-logo a {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: auto;
    max-height: 70px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

/* Ensure hamburger is hidden by default on desktop */
.hamburger {
    display: none;
    
}

/* Ensure nav-menu is visible by default on desktop */
.nav-menu {
    display: flex;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: block;
    position: relative;
}

.nav-menu a:hover {
    background: rgba(0, 113, 45, 0.1);
    color: var(--accent-color);
}

.nav-menu a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-auth-item {
    margin-left: 1rem;
}

.nav-auth-item .btn {
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-auth-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-auth-item .btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    transform: scale(1.02);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    border: none;
    background: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hamburger:hover {
    background-color: var(--light-bg);
}

.hamburger:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #005a24;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #c4e08a;
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-login::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-login:hover::before {
    left: 100%;
}

.btn-register {
    background-color: var(--accent-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    background-color: #e67e00;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-register::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-register:hover::before {
    left: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    display: block;
    width: 100%;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-emoji {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    min-height: 4rem;
}

.feature-card:hover .feature-emoji {
    transform: scale(1.1);
}

/* Account Section */
.account-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.account-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.account-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.account-feature:hover {
    background-color: var(--light-bg);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.account-feature:hover .feature-icon {
    transform: scale(1.1);
}

.account-buttons {
    text-align: center;
}

/* Join Section */
.join-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background-color: var(--light-bg);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.join-buttons {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-category {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--white);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    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(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.footer-bottom a {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-right: 20px;
    }

    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none;
    }

    /* Show mobile navigation when active */
    .nav-menu.active {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow);
        padding-top: 80px;
        height: 100vh;
        overflow-y: auto;
        gap: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(8) { transition-delay: 0.45s; }

    .nav-menu a {
        padding: 1rem 2rem;
        color: var(--primary-color);
        font-size: 1.1rem;
        border-radius: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a:hover {
        background-color: var(--light-bg);
        color: var(--accent-color);
        transform: translateX(10px);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-auth-item {
        margin: 0;
        border-bottom: none;
        padding: 1rem 0;
    }

    .nav-auth-item .btn {
        margin: 0.5rem auto;
        display: inline-block;
        width: auto;
        min-width: 120px;
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
    }

    .nav-auth-item .btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Enhanced mobile menu styling */
    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a:active {
        background-color: var(--primary-color);
        color: var(--white);
        transform: scale(0.98);
    }

    .nav-menu a:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
        background-color: var(--light-bg);
    }

    /* Loading animation for menu items */
    .nav-menu.active li {
        animation: slideInLeft 0.5s ease forwards;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .account-features,
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-emoji {
        font-size: 3rem;
    }

    .feature-icon,
    .benefit-icon {
        font-size: 1.5rem;
    }

    /* Additional responsive adjustments */
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}



/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
        --accent-color: #ff0000;
        --light-bg: #ffffff;
        --white: #ffffff;
        --dark: #000000;
        --gray: #000000;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        background: none;
        padding: 1rem 0;
    }
}

/* Tablet Navigation */
@media (min-width: 769px) and (max-width: 1024px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        background: none;
        padding: 0;
        flex-direction: row;
        gap: 1rem;
        left: 0 !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
    }

    .nav-menu a {
        padding: 0.75rem 0.75rem;
        font-size: 0.95rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-logo img {
        max-height: 45px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
        min-height: 60px;
    }
    
    .nav-logo img {
        max-height: 40px;
    }
    
    .nav-menu {
        padding-top: 70px;
    }
    
    .nav-menu a {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-auth-item .btn {
        min-width: 100px;
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .hamburger {
        padding: 0.25rem;
    }

    .bar {
        width: 22px;
        height: 2px;
    }

    /* Additional responsive adjustments for small mobile */
    .feature-emoji {
        font-size: 2.5rem;
    }

    .feature-icon,
    .benefit-icon {
        font-size: 1.25rem;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        padding-top: 60px;
        height: 100vh;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        padding: 0.75rem 2rem;
    }
}

/* Desktop Navigation */
@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        background: none;
        padding: 0;
        flex-direction: row;
        gap: 2rem;
        left: 0 !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .nav-menu a:hover {
        transform: translateY(-2px);
    }

    .nav-menu a::after {
        bottom: -2px;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .nav-logo img {
        max-height: 50px;
    }
}

/* Additional responsive improvements */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 0.25rem;
        min-height: 55px;
    }
    
    .nav-logo img {
        max-height: 35px;
    }
    
    .nav-menu {
        padding-top: 65px;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-auth-item .btn {
        min-width: 90px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hamburger {
        padding: 0.25rem;
    }
    
    .bar {
        width: 20px;
        height: 2px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-menu a {
        border: 1px solid var(--primary-color);
    }
    
    .nav-menu a:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }
    
    .hamburger .bar {
        background-color: var(--dark);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .nav-menu a,
    .nav-menu li,
    .hamburger .bar,
    .btn {
        transition: none;
        animation: none;
    }
    
    .nav-menu a:hover {
        transform: none;
    }
}

/* AOS (Animate On Scroll) Effects - Pure CSS Implementation */

/* Base animation properties for all AOS elements */
[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* Fade In Animation */
[data-aos="fade-in"] {
    opacity: 0;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(60px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down Animation */
[data-aos="fade-down"] {
    opacity: 0;
    transform: translateY(-60px);
}

[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left Animation */
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(60px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right Animation */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-60px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In Animation */
[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Zoom Out Animation */
[data-aos="zoom-out"] {
    opacity: 0;
    transform: scale(1.2);
}

[data-aos="zoom-out"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Scale Up Animation */
[data-aos="scale-up"] {
    opacity: 0;
    transform: scale(0.5);
}

[data-aos="scale-up"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Scale Down Animation */
[data-aos="scale-down"] {
    opacity: 0;
    transform: scale(1.5);
}

[data-aos="scale-down"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Flip Up Animation */
[data-aos="flip-up"] {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
}

[data-aos="flip-up"].aos-animate {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
}

/* Flip Down Animation */
[data-aos="flip-down"] {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
}

[data-aos="flip-down"].aos-animate {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
}

/* Slide Up Animation */
[data-aos="slide-up"] {
    opacity: 0;
    transform: translateY(100px);
}

[data-aos="slide-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Down Animation */
[data-aos="slide-down"] {
    opacity: 0;
    transform: translateY(-100px);
}

[data-aos="slide-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Left Animation */
[data-aos="slide-left"] {
    opacity: 0;
    transform: translateX(100px);
}

[data-aos="slide-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Right Animation */
[data-aos="slide-right"] {
    opacity: 0;
    transform: translateX(-100px);
}

[data-aos="slide-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Bounce In Animation */
[data-aos="bounce-in"] {
    opacity: 0;
    transform: scale(0.3);
}

[data-aos="bounce-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate In Animation */
[data-aos="rotate-in"] {
    opacity: 0;
    transform: rotate(-200deg);
}

[data-aos="rotate-in"].aos-animate {
    opacity: 1;
    transform: rotate(0deg);
}

/* Rotate In Left Animation */
[data-aos="rotate-in-left"] {
    opacity: 0;
    transform: rotate(-200deg) translateX(-100px);
}

[data-aos="rotate-in-left"].aos-animate {
    opacity: 1;
    transform: rotate(0deg) translateX(0);
}

/* Rotate In Right Animation */
[data-aos="rotate-in-right"] {
    opacity: 0;
    transform: rotate(200deg) translateX(100px);
}

[data-aos="rotate-in-right"].aos-animate {
    opacity: 1;
    transform: rotate(0deg) translateX(0);
}

/* Staggered animations for grid items */
[data-aos="stagger-fade-up"] {
    opacity: 0;
    transform: translateY(60px);
}

[data-aos="stagger-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered animations */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }
[data-aos-delay="700"] { transition-delay: 0.7s; }
[data-aos-delay="800"] { transition-delay: 0.8s; }

/* Duration classes for different animation speeds */
[data-aos-duration="300"] { transition-duration: 0.3s; }
[data-aos-duration="600"] { transition-duration: 0.6s; }
[data-aos-duration="900"] { transition-duration: 0.9s; }
[data-aos-duration="1200"] { transition-duration: 1.2s; }
[data-aos-duration="1500"] { transition-duration: 1.5s; }

/* Easing classes for different animation curves */
[data-aos-easing="ease"] { transition-timing-function: ease; }
[data-aos-easing="ease-in"] { transition-timing-function: ease-in; }
[data-aos-easing="ease-out"] { transition-timing-function: ease-out; }
[data-aos-easing="ease-in-out"] { transition-timing-function: ease-in-out; }
[data-aos-easing="cubic-bezier"] { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* Intersection Observer fallback for older browsers */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover effects for animated elements */
[data-aos].aos-animate:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Special animation for hero section */
.hero-section [data-aos] {
    transition-delay: 0.2s;
}

/* Animation for feature cards with staggered effect */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }

/* Animation for game categories with staggered effect */
.games-grid .game-category:nth-child(1) { transition-delay: 0.1s; }
.games-grid .game-category:nth-child(2) { transition-delay: 0.2s; }
.games-grid .game-category:nth-child(3) { transition-delay: 0.3s; }

/* Animation for benefit cards with staggered effect */
.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.3s; }

/* Animation for testimonial cards with staggered effect */
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.2s; }

/* Animation for stats with staggered effect */
.stats-grid .stat-item:nth-child(1) { transition-delay: 0.1s; }
.stats-grid .stat-item:nth-child(2) { transition-delay: 0.2s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 0.3s; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 0.4s; }

/* Enhanced button animations */
.btn[data-aos] {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn[data-aos].aos-animate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 113, 45, 0.3);
}

/* Image animations */
img[data-aos] {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

img[data-aos].aos-animate:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Text animations */
h1[data-aos], h2[data-aos], h3[data-aos], p[data-aos] {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Special animation for the main hero title */
.hero-title[data-aos] {
    transition-delay: 0.3s;
    transition-duration: 1s;
}

/* Animation for hero description */
.hero-description[data-aos] {
    transition-delay: 0.5s;
    transition-duration: 1.2s;
}

/* Animation for hero buttons */
.hero-buttons[data-aos] {
    transition-delay: 0.7s;
    transition-duration: 1s;
}

/* Animation for hero image */
.hero-image[data-aos] {
    transition-delay: 0.4s;
    transition-duration: 1.2s;
}

/* ===== ABOUT US PAGE STYLES ===== */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1s ease-out;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Intro Section */
.about-intro {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 1;
}

/* Mission Vision Section */
.mission-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    text-align: center;
}

/* Company Values Section */
.company-values {
    padding: 5rem 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-bg), var(--secondary-color));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Company History Timeline */
.company-history {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 113, 45, 0.3);
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 2rem;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-bg);
    transition: all 0.3s ease;
}

.team-member:hover .member-photo img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.team-member p {
    color: var(--gray);
    line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a24 100%);
    color: var(--white);
}

.achievements-section .section-title {
    color: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement-label {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-section .section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-section .section-description {
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}

/* Enhanced animations for About Us page */
.about-intro [data-aos] {
    transition-delay: 0.2s;
}

.mission-vision [data-aos] {
    transition-delay: 0.3s;
}

.company-values [data-aos] {
    transition-delay: 0.4s;
}

.company-history [data-aos] {
    transition-delay: 0.5s;
}

.team-section [data-aos] {
    transition-delay: 0.6s;
}

.achievements-section [data-aos] {
    transition-delay: 0.7s;
}

.cta-section [data-aos] {
    transition-delay: 0.8s;
}

/* Staggered animations for grid items */
.values-grid .value-card:nth-child(1) { transition-delay: 0.1s; }
.values-grid .value-card:nth-child(2) { transition-delay: 0.2s; }
.values-grid .value-card:nth-child(3) { transition-delay: 0.3s; }
.values-grid .value-card:nth-child(4) { transition-delay: 0.4s; }

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }

.team-grid .team-member:nth-child(1) { transition-delay: 0.1s; }
.team-grid .team-member:nth-child(2) { transition-delay: 0.2s; }
.team-grid .team-member:nth-child(3) { transition-delay: 0.3s; }

.achievements-grid .achievement-item:nth-child(1) { transition-delay: 0.1s; }
.achievements-grid .achievement-item:nth-child(2) { transition-delay: 0.2s; }
.achievements-grid .achievement-item:nth-child(3) { transition-delay: 0.3s; }
.achievements-grid .achievement-item:nth-child(4) { transition-delay: 0.4s; }

/* Additional About Us Page Enhancements */

/* Enhanced page hero with floating elements */
.page-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 145, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-hero::before {
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Enhanced section titles */
.section-title {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

/* Enhanced value cards with better shadows */
.value-card {
    border: 1px solid rgba(0, 113, 45, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.value-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(213, 237, 159, 0.3) 100%);
}

/* Enhanced timeline with better visual connection */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 4px var(--light-bg);
}

.timeline-item:nth-child(odd)::before {
    left: calc(50% + 2px);
}

.timeline-item:nth-child(even)::before {
    left: calc(50% - 2px);
}

/* Enhanced team member cards */
.team-member {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.team-member:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(213, 237, 159, 0.3) 100%);
}

.member-photo::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-photo::after {
    opacity: 0.3;
}

/* Enhanced achievement items */
.achievement-item {
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.achievement-item:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.achievement-number {
    position: relative;
    z-index: 2;
}

/* Enhanced CTA section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 237, 159, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Enhanced buttons with better hover effects */
.cta-buttons .btn {
    position: relative;
    overflow: hidden;
}

.cta-buttons .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.6s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .page-hero::after,
    .page-hero::before {
        display: none;
    }
    
    .timeline-item::before {
        left: 20px !important;
        transform: translate(-50%, -50%);
    }
    
    .section-title::before,
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Print styles for About Us page */
@media print {
    .page-hero {
        background: none !important;
        padding: 2rem 0;
    }
    
    .page-hero::before,
    .page-hero::after {
        display: none;
    }
    
    .value-card,
    .mission-card,
    .vision-card,
    .team-member,
    .achievement-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .timeline::before {
        background: #ccc;
    }
    
    .timeline-item::before {
        background: #fff;
        border-color: #ccc;
    }
}

/* ===== GAMES PAGE STYLES ===== */

/* Enhanced Page Hero for Games */
.page-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gamesGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gamesGrain)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1s ease-out;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Games Overview Section */
.games-overview {
    padding: 5rem 0;
    background-color: var(--white);
}

.overview-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.overview-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 113, 45, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.05), transparent);
    transition: left 0.6s ease;
}

.overview-card:hover::before {
    left: 100%;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.overview-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-bg), var(--secondary-color));
    border-radius: 50%;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.overview-card:hover .overview-icon {
    transform: scale(1.1) rotate(5deg);
}

.overview-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overview-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Game Categories Section */
.game-categories {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-card.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.category-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    flex: 1;
    min-width: 200px;
}

.category-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 200px;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
    min-width: 200px;
}

.feature {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 113, 45, 0.2);
}

.category-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex: 1;
    min-width: 200px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Featured Games Section */
.featured-games {
    padding: 5rem 0;
    background-color: var(--white);
}

.featured-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.game-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 45, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.game-type,
.game-provider {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.game-info {
    padding: 1rem;
}

.game-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.game-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1rem;
}

.game-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Game Providers Section */
.game-providers {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.provider-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.provider-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.provider-card:hover .provider-logo {
    transform: scale(1.05);
}

.provider-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.provider-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.provider-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.provider-games {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gaming Features Section */
.gaming-features {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-bg), var(--secondary-color));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a24 100%);
    color: var(--white);
}

.responsible-gaming .section-title {
    color: var(--white);
}

.responsible-gaming .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.responsible-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.responsible-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.responsible-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.responsible-item .feature-icon {
    font-size: 2.5rem;
    background: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.responsible-item .feature-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.responsible-item .feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced CTA Section for Games */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 237, 159, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-section .section-description {
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .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.6s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Games Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .overview-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .overview-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .providers-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .game-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .categories-grid {
        gap: 2rem;
    }
    
    .category-content {
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .category-content h3,
    .category-content p,
    .category-features,
    .category-stats {
        min-width: 100%;
        flex: none;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .responsible-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .responsible-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .overview-card,
    .provider-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .category-content {
        padding: 1.5rem;
    }
    
    .game-info {
        padding: 1.25rem;
    }
}

/* Enhanced animations for Games page */
.games-overview [data-aos] {
    transition-delay: 0.2s;
}

.game-categories [data-aos] {
    transition-delay: 0.3s;
}

.featured-games [data-aos] {
    transition-delay: 0.4s;
}

.game-providers [data-aos] {
    transition-delay: 0.5s;
}

.gaming-features [data-aos] {
    transition-delay: 0.6s;
}

.responsible-gaming [data-aos] {
    transition-delay: 0.7s;
}

.cta-section [data-aos] {
    transition-delay: 0.8s;
}

/* Staggered animations for grid items */
.overview-grid .overview-card:nth-child(1) { transition-delay: 0.1s; }
.overview-grid .overview-card:nth-child(2) { transition-delay: 0.2s; }
.overview-grid .overview-card:nth-child(3) { transition-delay: 0.3s; }
.overview-grid .overview-card:nth-child(4) { transition-delay: 0.4s; }

.featured-grid .game-card:nth-child(1) { transition-delay: 0.1s; }
.featured-grid .game-card:nth-child(2) { transition-delay: 0.2s; }
.featured-grid .game-card:nth-child(3) { transition-delay: 0.3s; }
.featured-grid .game-card:nth-child(4) { transition-delay: 0.4s; }

.providers-grid .provider-card:nth-child(1) { transition-delay: 0.1s; }
.providers-grid .provider-card:nth-child(2) { transition-delay: 0.2s; }
.providers-grid .provider-card:nth-child(3) { transition-delay: 0.3s; }
.providers-grid .provider-card:nth-child(4) { transition-delay: 0.4s; }

.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.5s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.6s; }

.responsible-features .responsible-item:nth-child(1) { transition-delay: 0.1s; }
.responsible-features .responsible-item:nth-child(2) { transition-delay: 0.2s; }
.responsible-features .responsible-item:nth-child(3) { transition-delay: 0.3s; }
.responsible-features .responsible-item:nth-child(4) { transition-delay: 0.4s; }

/* ===== CONTACT US PAGE STYLES ===== */

/* Enhanced Page Hero for Contact Us */
.page-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrain)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1s ease-out;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Contact Methods Section */
.contact-methods {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-method {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 45, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.method-icon {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-bg), var(--secondary-color));
    border-radius: 50%;
    transition: transform 0.3s ease;
    font-size: 3rem;
    line-height: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-method h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-details {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-details strong {
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.form-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.feature-icon {
    font-size: 1.5rem;
    background: var(--light-bg);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--accent-color);
}

/* Office Locations Section */
.office-locations {
    padding: 5rem 0;
    background-color: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.location-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 1rem;
}

.location-details {
    padding: 0 1.5rem 1.5rem;
}

.location-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-details strong {
    color: var(--primary-color);
}

/* Response Times Section */
.response-times {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.response-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.response-time-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.response-time-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.time-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.response-time-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.response-time {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.response-time-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

/* FAQ Preview Section */
.faq-preview {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 113, 45, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Enhanced CTA Section for Contact Us */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 237, 159, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-section .section-description {
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .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.6s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Contact Us Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-info h2 {
        font-size: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .response-times-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .faq-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-method,
    .response-time-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .response-times-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* Enhanced animations for Contact Us page */
.contact-methods [data-aos] {
    transition-delay: 0.2s;
}

.contact-form-section [data-aos] {
    transition-delay: 0.3s;
}

.office-locations [data-aos] {
    transition-delay: 0.4s;
}

.response-times [data-aos] {
    transition-delay: 0.5s;
}

.faq-preview [data-aos] {
    transition-delay: 0.6s;
}

.cta-section [data-aos] {
    transition-delay: 0.7s;
}

/* Staggered animations for grid items */
.contact-methods-grid .contact-method:nth-child(1) { transition-delay: 0.1s; }
.contact-methods-grid .contact-method:nth-child(2) { transition-delay: 0.2s; }
.contact-methods-grid .contact-method:nth-child(3) { transition-delay: 0.3s; }

.locations-grid .location-card:nth-child(1) { transition-delay: 0.1s; }
.locations-grid .location-card:nth-child(2) { transition-delay: 0.2s; }

.response-times-grid .response-time-card:nth-child(1) { transition-delay: 0.1s; }
.response-times-grid .response-time-card:nth-child(2) { transition-delay: 0.2s; }
.response-times-grid .response-time-card:nth-child(3) { transition-delay: 0.3s; }
.response-times-grid .response-time-card:nth-child(4) { transition-delay: 0.4s; }

.faq-preview-grid .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-preview-grid .faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-preview-grid .faq-item:nth-child(3) { transition-delay: 0.3s; }

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #27ae60;
}

/* Loading state for form submission */
.contact-form.submitting {
    opacity: 0.7;
    pointer-events: none;
}

.contact-form.submitting .btn {
    position: relative;
}

.contact-form.submitting .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message styles */
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #c3e6cb;
    margin-bottom: 1rem;
    text-align: center;
}

/* Error message styles */
.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #f5c6cb;
    margin-bottom: 1rem;
    text-align: center;
}

/* Enhanced form focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 113, 45, 0.2);
}

/* Form button hover effects */
.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 113, 45, 0.3);
}

/* Print styles for Contact Us page */
@media print {
    .page-hero {
        background: none !important;
        padding: 2rem 0;
    }
    
    .page-hero::before {
        display: none;
    }
    
    .contact-method,
    .location-card,
    .response-time-card,
    .faq-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .contact-form {
        display: none;
    }
    
    .cta-section {
        background: none !important;
    }
    
    .cta-section::before {
        display: none;
    }
}

/* ===== FAQ PAGE STYLES ===== */

/* FAQ Page Hero */
.faq-page .page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.faq-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.faq-page .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-page .page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.faq-page .page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Search Section */
.faq-search {
    background: var(--light-bg);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* FAQ Categories */
.faq-categories {
    padding: 4rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Content */
.faq-content {
    padding: 4rem 0;
    background: var(--light-bg);
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.faq-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(79, 70, 229, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ CTA Section */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.faq-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-page .page-title {
        font-size: 2.5rem;
    }
    
    .faq-page .page-subtitle {
        font-size: 1.3rem;
    }
    
    .search-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input,
    .search-btn {
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
    
    .faq-cta h2 {
        font-size: 2rem;
    }
    
    .faq-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-page .page-hero {
        padding: 4rem 0;
    }
    
    .faq-page .page-title {
        font-size: 2rem;
    }
    
    .faq-page .page-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-page .page-description {
        font-size: 1rem;
    }
    
    .faq-search {
        padding: 2rem 0;
    }
    
    .faq-categories {
        padding: 3rem 0;
    }
    
    .faq-content {
        padding: 3rem 0;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .faq-cta {
        padding: 3rem 0;
    }
}

/* FAQ Print Styles */
@media print {
    .faq-search,
    .faq-categories,
    .faq-cta {
        display: none;
    }
    
    .faq-item {
        break-inside: avoid;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        background: #f5f5f5;
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
        max-height: none;
        opacity: 1;
    }
}

/* FAQ Animation Enhancements */
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

/* FAQ Search Animation */
.search-container {
    animation: fadeInUp 0.8s ease forwards;
}

/* FAQ Section Title Animation */
.faq-section-title {
    animation: fadeInUp 0.6s ease forwards;
}

/* FAQ CTA Animation */
.faq-cta h2,
.faq-cta p,
.faq-cta .cta-buttons {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-cta p { animation-delay: 0.2s; }
.faq-cta .cta-buttons { animation-delay: 0.4s; }

/* FAQ Interactive Enhancements */
.category-card.active-category {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(147, 51, 234, 0.05));
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);
}

.category-card.active-category::before {
    transform: scaleX(1);
}

/* FAQ Search Highlighting */
.faq-question h3 mark {
    background: linear-gradient(120deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text-dark);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* FAQ Smooth Transitions */
.faq-item {
    transition: all 0.3s ease, opacity 0.3s ease;
}

.faq-item[style*="display: none"] {
    opacity: 0;
    transform: translateY(-20px);
}

.faq-item[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Category Filtering */
.faq-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-section[style*="display: none"] {
    opacity: 0;
    transform: translateY(-30px);
}

.faq-section[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Search Input Enhancements */
.search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.search-input:focus::placeholder {
    opacity: 0.4;
}

/* FAQ Toggle Button Enhancements */
.faq-toggle {
    position: relative;
    overflow: hidden;
}

.faq-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.faq-item.active .faq-toggle::before {
    width: 100%;
    height: 100%;
}

/* FAQ Answer Content Animation */
.faq-answer {
    transform: translateY(-10px);
    transition: all 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer {
    transform: translateY(0);
}

/* FAQ Category Icon Hover Effects */
.category-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* FAQ Search Button Loading State */
.search-btn.loading {
    position: relative;
    color: transparent;
}

.search-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FAQ Accessibility Enhancements */
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.search-input:focus,
.search-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* FAQ Print Optimizations */
@media print {
    .faq-item.active .faq-answer {
        max-height: none;
        opacity: 1;
        padding: 1rem;
    }
    
    .faq-toggle {
        display: none;
    }
    
    .faq-question {
        cursor: default;
    }
    
    .faq-question:hover {
        background: var(--light-bg);
    }
}

/* ===== SUPPORT TEAM PAGE STYLES ===== */

/* Support Team Page Hero */
.support-team-page .page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.support-team-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.support-team-page .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-team-page .page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.support-team-page .page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Support Intro Section */
.support-intro {
    padding: 5rem 0;
    background: white;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.support-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.support-text p:last-child {
    margin-bottom: 0;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.support-image img:hover {
    transform: scale(1.02);
}

/* Support Stats Section */
.support-stats {
    padding: 5rem 0;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Team Structure Section */
.team-structure {
    padding: 5rem 0;
    background: white;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.department-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.department-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.department-card:hover::before {
    transform: scaleX(1);
}

.department-icon {
    margin-bottom: 1.5rem;
}

.department-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.department-card:hover .department-icon img {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.department-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.department-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.department-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Team Members Section */
.team-members {
    padding: 5rem 0;
    background: var(--light-bg);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border-color);
    transition: all 0.3s ease;
}

.member-card:hover .member-photo img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.member-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Support Process Section */
.support-process {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Support Features Section */
.support-features {
    padding: 5rem 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Support Training Section */
.support-training {
    padding: 5rem 0;
    background: white;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.training-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.training-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.training-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.training-text li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.training-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.training-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.training-image img:hover {
    transform: scale(1.02);
}

/* Support CTA Section */
.support-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.support-cta .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-cta .section-description {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Support Team Responsive Design */
@media (max-width: 768px) {
    .support-team-page .page-title {
        font-size: 2.5rem;
    }
    
    .support-team-page .page-subtitle {
        font-size: 1.3rem;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .support-text h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .training-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .training-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .support-team-page .page-hero {
        padding: 4rem 0;
    }
    
    .support-team-page .page-title {
        font-size: 2rem;
    }
    
    .support-team-page .page-subtitle {
        font-size: 1.1rem;
    }
    
    .support-team-page .page-description {
        font-size: 1rem;
    }
    
    .support-intro {
        padding: 3rem 0;
    }
    
    .support-stats {
        padding: 3rem 0;
    }
    
    .team-structure {
        padding: 3rem 0;
    }
    
    .team-members {
        padding: 3rem 0;
    }
    
    .support-process {
        padding: 3rem 0;
    }
    
    .support-features {
        padding: 3rem 0;
    }
    
    .support-training {
        padding: 3rem 0;
    }
    
    .support-cta {
        padding: 3rem 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .department-card {
        padding: 2rem 1.5rem;
    }
    
    .member-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Support Team Print Styles */
@media print {
    .support-team-page .page-hero {
        background: white !important;
        color: black !important;
    }
    
    .support-team-page .page-title,
    .support-team-page .page-subtitle,
    .support-team-page .page-description {
        color: black !important;
    }
    
    .support-cta {
        background: white !important;
        color: black !important;
    }
    
    .support-cta .section-title,
    .support-cta .section-description {
        color: black !important;
    }
    
    .stat-card,
    .department-card,
    .member-card,
    .process-step,
    .feature-card {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}

/* Support Team Animation Enhancements */
.support-intro,
.support-stats,
.team-structure,
.team-members,
.support-process,
.support-features,
.support-training,
.support-cta {
    animation: fadeInUp 0.6s ease forwards;
}

.support-content,
.stats-grid,
.departments-grid,
.members-grid,
.process-steps,
.features-grid,
.training-content {
    animation: fadeInUp 0.8s ease forwards;
}

/* Staggered animations for grid items */
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.department-card:nth-child(1) { animation-delay: 0.1s; }
.department-card:nth-child(2) { animation-delay: 0.2s; }
.department-card:nth-child(3) { animation-delay: 0.3s; }
.department-card:nth-child(4) { animation-delay: 0.4s; }

.member-card:nth-child(1) { animation-delay: 0.1s; }
.member-card:nth-child(2) { animation-delay: 0.2s; }
.member-card:nth-child(3) { animation-delay: 0.3s; }
.member-card:nth-child(4) { animation-delay: 0.4s; }

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== 404 ERROR PAGE STYLES ===== */

/* 404 Page Hero */
.error-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.error-content-left {
    /* Additional styling for the left content wrapper */
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.error-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.error-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.error-image {
    text-align: center;
    position: relative;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Helpful Links Section */
.helpful-links {
    padding: 5rem 0;
    background: white;
}

.helpful-links h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.helpful-links > .container > p {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.link-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.link-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-card .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.link-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Search Section */
.search-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.search-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.search-section > .container > p {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.search-suggestions {
    text-align: center;
}

.search-suggestions p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.suggestion-tag {
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* 404 CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 404 Responsive Design */
@media (max-width: 768px) {
    .error-hero {
        padding: 4rem 0;
        min-height: 70vh;
    }
    
    .error-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2.5rem;
    }
    
    .error-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .helpful-links h2,
    .search-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .search-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input,
    .search-btn {
        width: 100%;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-hero {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .error-number {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .helpful-links,
    .search-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .link-card {
        padding: 2rem 1.5rem;
    }
    
    .link-card h3 {
        font-size: 1.3rem;
    }
}

/* 404 Print Styles */
@media print {
    .error-hero {
        background: white !important;
        color: black !important;
    }
    
    .error-number,
    .error-title,
    .error-description {
        color: black !important;
    }
    
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .cta-section h2,
    .cta-section p {
        color: black !important;
    }
    
    .link-card,
    .search-container {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}

/* 404 Animation Enhancements */
.error-hero {
    animation: fadeInUp 0.8s ease forwards;
}

.error-content,
.links-grid,
.search-container,
.cta-section {
    animation: fadeInUp 1s ease forwards;
}

/* Staggered animations for grid items */
.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }

.suggestion-tag:nth-child(1) { animation-delay: 0.1s; }
.suggestion-tag:nth-child(2) { animation-delay: 0.2s; }
.suggestion-tag:nth-child(3) { animation-delay: 0.3s; }
.suggestion-tag:nth-child(4) { animation-delay: 0.4s; }
.suggestion-tag:nth-child(5) { animation-delay: 0.5s; }
.suggestion-tag:nth-child(6) { animation-delay: 0.6s; }

/* 404 Special Effects */
.error-number {
    position: relative;
}

.error-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}

/* 404 Hover Effects */
.link-card:hover h3 {
    color: var(--primary-color);
}

.link-card:hover .btn {
    background: var(--primary-color);
    color: white;
}

/* 404 Focus States */
.search-input:focus,
.search-btn:focus,
.suggestion-tag:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== 404 ERROR PAGE STYLES ===== */

/* 404 Error Hero Section */
.error-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.error-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.error-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.error-image {
    text-align: center;
    position: relative;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.error-image img:hover {
    transform: scale(1.05);
}

/* Helpful Links Section */
.helpful-links {
    padding: 5rem 0;
    background: white;
}

.helpful-links h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.helpful-links > p {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.link-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.link-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-card .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.link-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Search Section */
.search-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.search-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.search-section > p {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.search-suggestions {
    text-align: center;
}

.search-suggestions p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.search-suggestions strong {
    color: var(--text-dark);
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.suggestion-tag {
    background: white;
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* 404 CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 404 Page Responsive Design */
@media (max-width: 768px) {
    .error-hero {
        padding: 4rem 0;
        min-height: 70vh;
    }
    
    .error-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2.5rem;
    }
    
    .error-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .helpful-links h2,
    .search-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .search-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input,
    .search-btn {
        width: 100%;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-hero {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .error-number {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .helpful-links,
    .search-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .helpful-links h2,
    .search-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .link-card {
        padding: 2rem 1.5rem;
    }
    
    .suggestion-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* 404 Page Print Styles */
@media print {
    .error-hero {
        background: white !important;
        color: black !important;
    }
    
    .error-number,
    .error-title,
    .error-description {
        color: black !important;
    }
    
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .cta-section h2,
    .cta-section p {
        color: black !important;
    }
    
    .link-card,
    .search-container {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}

/* 404 Page Animation Enhancements */
.error-hero {
    animation: fadeInUp 0.8s ease forwards;
}

.error-content,
.helpful-links,
.search-section,
.cta-section {
    animation: fadeInUp 0.6s ease forwards;
}

.links-grid {
    animation: fadeInUp 0.8s ease forwards;
}

.search-container {
    animation: fadeInUp 0.8s ease forwards;
}

.suggestion-tags {
    animation: fadeInUp 1s ease forwards;
}

/* Staggered animations for grid items */
.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }

.suggestion-tag:nth-child(1) { animation-delay: 0.1s; }
.suggestion-tag:nth-child(2) { animation-delay: 0.2s; }
.suggestion-tag:nth-child(3) { animation-delay: 0.3s; }
.suggestion-tag:nth-child(4) { animation-delay: 0.4s; }
.suggestion-tag:nth-child(5) { animation-delay: 0.5s; }
.suggestion-tag:nth-child(6) { animation-delay: 0.6s; }

/* 404 Page Interactive Enhancements */
.error-number {
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 0 4px 20px rgba(255, 255, 255, 0.4); }
}

.link-card {
    cursor: pointer;
}

.link-card:hover .btn {
    background: var(--primary-color);
    color: white;
}

.search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.search-input:focus::placeholder {
    opacity: 0.4;
}

/* 404 Page Accessibility Enhancements */
.error-actions .btn:focus,
.link-card .btn:focus,
.search-btn:focus,
.suggestion-tag:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.error-image img:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* ===== TERMS & CONDITIONS PAGE STYLES ===== */

/* Enhanced Page Hero for Terms & Conditions */
.terms-page .page-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="termsGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23termsGrain)"/></svg>');
    opacity: 0.3;
}

.terms-page .page-hero .container {
    position: relative;
    z-index: 2;
}

.terms-page .page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1s ease-out;
}

.terms-page .page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.terms-page .page-date {
    font-size: 1.1rem;
    color: var(--gray);
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background-color: var(--white);
}

.terms-intro {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.terms-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.05), transparent);
    transition: left 0.6s ease;
}

.terms-intro:hover::before {
    left: 100%;
}

.terms-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.terms-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

/* Terms Sections */
.terms-section {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 113, 45, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.03), transparent);
    transition: left 0.6s ease;
}

.terms-section:hover::before {
    left: 100%;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.terms-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.terms-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    position: relative;
    padding-left: 1rem;
}

.terms-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.terms-section ul,
.terms-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 0.75rem;
    position: relative;
}

.terms-section ul li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.terms-section ol li {
    counter-increment: list-counter;
}

.terms-section ol li::before {
    content: counter(list-counter) '.';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -2rem;
}

.terms-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Info Section */
.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Terms Footer */
.terms-footer {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 113, 45, 0.1);
    margin-top: 3rem;
}

.terms-footer p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.terms-footer p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--gray);
}

/* Enhanced List Styling */
.terms-section ul li,
.terms-section ol li {
    transition: all 0.3s ease;
}

.terms-section ul li:hover,
.terms-section ol li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Section Numbering */
.terms-section {
    counter-increment: section-counter;
}

.terms-section h2::before {
    content: counter(section-counter) '. ';
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Enhanced Typography */
.terms-section p:first-of-type {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
}

.terms-section p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin: 0.1em 0.1em 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Terms & Conditions Page */
@media (max-width: 768px) {
    .terms-page .page-title {
        font-size: 2.5rem;
    }
    
    .terms-page .page-subtitle {
        font-size: 1.2rem;
    }
    
    .terms-page .page-date {
        font-size: 1rem;
    }
    
    .terms-intro {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-intro h2 {
        font-size: 2rem;
    }
    
    .terms-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .terms-section ul,
    .terms-section ol {
        padding-left: 1.5rem;
    }
    
    .terms-section ul li::before {
        left: -1.25rem;
    }
    
    .terms-section ol li::before {
        left: -1.75rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .terms-footer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-page .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .terms-page .page-title {
        font-size: 2rem;
    }
    
    .terms-page .page-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-intro {
        padding: 1.5rem 1rem;
    }
    
    .terms-intro h2 {
        font-size: 1.75rem;
    }
    
    .terms-section {
        padding: 1.5rem 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
        padding-left: 0.75rem;
    }
    
    .terms-section h3::before {
        width: 3px;
        height: 16px;
    }
    
    .terms-section ul,
    .terms-section ol {
        padding-left: 1.25rem;
    }
    
    .terms-section ul li::before {
        left: -1rem;
    }
    
    .terms-section ol li::before {
        left: -1.5rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .terms-footer {
        padding: 1.5rem 1rem;
    }
}

/* Enhanced animations for Terms & Conditions page */
.terms-intro [data-aos] {
    transition-delay: 0.2s;
}

.terms-section [data-aos] {
    transition-delay: 0.3s;
}

.terms-footer [data-aos] {
    transition-delay: 0.4s;
}

/* Staggered animations for terms sections */
.terms-section:nth-child(1) { transition-delay: 0.1s; }
.terms-section:nth-child(2) { transition-delay: 0.2s; }
.terms-section:nth-child(3) { transition-delay: 0.3s; }
.terms-section:nth-child(4) { transition-delay: 0.4s; }
.terms-section:nth-child(5) { transition-delay: 0.5s; }
.terms-section:nth-child(6) { transition-delay: 0.6s; }
.terms-section:nth-child(7) { transition-delay: 0.7s; }
.terms-section:nth-child(8) { transition-delay: 0.8s; }
.terms-section:nth-child(9) { transition-delay: 0.9s; }
.terms-section:nth-child(10) { transition-delay: 1.0s; }
.terms-section:nth-child(11) { transition-delay: 1.1s; }
.terms-section:nth-child(12) { transition-delay: 1.2s; }
.terms-section:nth-child(13) { transition-delay: 1.3s; }
.terms-section:nth-child(14) { transition-delay: 1.4s; }
.terms-section:nth-child(15) { transition-delay: 1.5s; }

/* Enhanced hover effects */
.terms-section:hover h2::after {
    width: 100px;
    transition: width 0.3s ease;
}

.terms-section:hover h3::before {
    height: 30px;
    transition: height 0.3s ease;
}

/* Print styles for Terms & Conditions page */
@media print {
    .terms-page .page-hero {
        background: none !important;
        padding: 2rem 0;
    }
    
    .terms-page .page-hero::before {
        display: none;
    }
    
    .terms-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    
    .terms-intro {
        background: #f5f5f5;
        border-left: 3px solid #333;
    }
    
    .terms-footer {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
    
    .contact-info {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
}

/* Enhanced accessibility for Terms & Conditions */
.terms-section:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.terms-section h2:focus,
.terms-section h3:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .terms-section {
        border: 2px solid var(--primary-color);
    }
    
    .terms-section h2::after,
    .terms-section h3::before {
        background: var(--primary-color);
    }
    
    .terms-intro {
        border-left: 5px solid var(--primary-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .terms-section,
    .terms-intro,
    .terms-footer {
        transition: none;
    }
    
    .terms-section:hover {
        transform: none;
    }
    
    .terms-section::before,
    .terms-intro::before {
        transition: none;
    }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */

/* Enhanced Page Hero for Privacy Policy */
.privacy-page .page-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="privacyGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23privacyGrain)"/></svg>');
    opacity: 0.3;
}

.privacy-page .page-hero .container {
    position: relative;
    z-index: 2;
}

.privacy-page .page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1s ease-out;
}

.privacy-page .page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.privacy-page .page-date {
    font-size: 1.1rem;
    color: var(--gray);
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Privacy Content Section */
.privacy-content {
    padding: 5rem 0;
    background-color: var(--white);
}

.privacy-intro {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.privacy-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.05), transparent);
    transition: left 0.6s ease;
}

.privacy-intro:hover::before {
    left: 100%;
}

.privacy-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.privacy-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

/* Privacy Sections */
.privacy-section {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 113, 45, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.03), transparent);
    transition: left 0.6s ease;
}

.privacy-section:hover::before {
    left: 100%;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.privacy-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    position: relative;
    padding-left: 1rem;
}

.privacy-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.privacy-section ul,
.privacy-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 0.75rem;
    position: relative;
}

.privacy-section ul li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.privacy-section ol li {
    counter-increment: list-counter;
}

.privacy-section ol li::before {
    content: counter(list-counter) '.';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -2rem;
}

.privacy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Info Section */
.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Privacy Footer */
.privacy-footer {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 113, 45, 0.1);
    margin-top: 3rem;
}

.privacy-footer p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.privacy-footer p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--gray);
}

/* Enhanced List Styling */
.privacy-section ul li,
.privacy-section ol li {
    transition: all 0.3s ease;
}

.privacy-section ul li:hover,
.privacy-section ol li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Section Numbering */
.privacy-section {
    counter-increment: section-counter;
}

.privacy-section h2::before {
    content: counter(section-counter) '. ';
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Enhanced Typography */
.privacy-section p:first-of-type {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
}

.privacy-section p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin: 0.1em 0.1em 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Special styling for data protection sections */
.privacy-section[data-category="data-protection"] {
    border-left: 5px solid var(--accent-color);
}

.privacy-section[data-category="data-protection"] h2::after {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.privacy-section[data-category="user-rights"] {
    border-left: 5px solid var(--secondary-color);
}

.privacy-section[data-category="user-rights"] h2::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/* Enhanced contact info for privacy page */
.privacy-section .contact-info {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(213, 237, 159, 0.3) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.privacy-section .contact-info::before {
    content: '📧';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-page .page-title {
        font-size: 2.5rem;
    }
    
    .privacy-page .page-subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-page .page-date {
        font-size: 1rem;
    }
    
    .privacy-intro {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-intro h2 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section ul,
    .privacy-section ol {
        padding-left: 1.5rem;
    }
    
    .privacy-section ul li::before {
        left: -1.25rem;
    }
    
    .privacy-section ol li::before {
        left: -1.75rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .privacy-footer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-page .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .privacy-page .page-title {
        font-size: 2rem;
    }
    
    .privacy-page .page-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-intro {
        padding: 1.5rem 1rem;
    }
    
    .privacy-intro h2 {
        font-size: 1.75rem;
    }
    
    .privacy-section {
        padding: 1.5rem 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
        padding-left: 0.75rem;
    }
    
    .privacy-section h3::before {
        width: 3px;
        height: 16px;
    }
    
    .privacy-section ul,
    .privacy-section ol {
        padding-left: 1.25rem;
    }
    
    .privacy-section ul li::before {
        left: -1rem;
    }
    
    .privacy-section ol li::before {
        left: -1.5rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .privacy-footer {
        padding: 1.5rem 1rem;
    }
}

/* Enhanced animations for Privacy Policy page */
.privacy-intro [data-aos] {
    transition-delay: 0.2s;
}

.privacy-section [data-aos] {
    transition-delay: 0.3s;
}

.privacy-footer [data-aos] {
    transition-delay: 0.4s;
}

/* Staggered animations for privacy sections */
.privacy-section:nth-child(1) { transition-delay: 0.1s; }
.privacy-section:nth-child(2) { transition-delay: 0.2s; }
.privacy-section:nth-child(3) { transition-delay: 0.3s; }
.privacy-section:nth-child(4) { transition-delay: 0.4s; }
.privacy-section:nth-child(5) { transition-delay: 0.5s; }
.privacy-section:nth-child(6) { transition-delay: 0.6s; }
.privacy-section:nth-child(7) { transition-delay: 0.7s; }
.privacy-section:nth-child(8) { transition-delay: 0.8s; }
.privacy-section:nth-child(9) { transition-delay: 0.9s; }
.privacy-section:nth-child(10) { transition-delay: 1.0s; }
.privacy-section:nth-child(11) { transition-delay: 1.1s; }
.privacy-section:nth-child(12) { transition-delay: 1.2s; }
.privacy-section:nth-child(13) { transition-delay: 1.3s; }
.privacy-section:nth-child(14) { transition-delay: 1.4s; }
.privacy-section:nth-child(15) { transition-delay: 1.5s; }

/* Enhanced hover effects */
.privacy-section:hover h2::after {
    width: 100px;
    transition: width 0.3s ease;
}

.privacy-section:hover h3::before {
    height: 30px;
    transition: height 0.3s ease;
}

/* Print styles for Privacy Policy page */
@media print {
    .privacy-page .page-hero {
        background: none !important;
        padding: 2rem 0;
    }
    
    .privacy-page .page-hero::before {
        display: none;
    }
    
    .privacy-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    
    .privacy-intro {
        background: #f5f5f5;
        border-left: 3px solid #333;
    }
    
    .privacy-footer {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
    
    .contact-info {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
}

/* Enhanced accessibility for Privacy Policy */
.privacy-section:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.privacy-section h2:focus,
.privacy-section h3:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .privacy-section {
        border: 2px solid var(--primary-color);
    }
    
    .privacy-section h2::after,
    .privacy-section h3::before {
        background: var(--primary-color);
    }
    
    .privacy-intro {
        border-left: 5px solid var(--primary-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .privacy-section,
    .privacy-intro,
    .privacy-footer {
        transition: none;
    }
    
    .privacy-section:hover {
        transform: none;
    }
    
    .privacy-section::before,
    .privacy-intro::before {
        transition: none;
    }
}

/* ===== DISCLAIMER PAGE STYLES ===== */

/* Enhanced Page Hero for Disclaimer */
.disclaimer-page .page-hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.disclaimer-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="disclaimerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23disclaimerGrain)"/></svg>');
    opacity: 0.3;
}

.disclaimer-page .page-hero .container {
    position: relative;
    z-index: 2;
}

.disclaimer-page .page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1s ease-out;
}

.disclaimer-page .page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.disclaimer-page .page-date {
    font-size: 1.1rem;
    color: var(--gray);
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Disclaimer Content Section */
.disclaimer-content {
    padding: 5rem 0;
    background-color: var(--white);
}

.disclaimer-intro {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    border-left: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.disclaimer-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 145, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.disclaimer-intro:hover::before {
    left: 100%;
}

.disclaimer-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.disclaimer-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.disclaimer-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.disclaimer-intro p:last-child {
    margin-bottom: 0;
}

/* Disclaimer Sections */
.disclaimer-section {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 113, 45, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 45, 0.03), transparent);
    transition: left 0.6s ease;
}

.disclaimer-section:hover::before {
    left: 100%;
}

.disclaimer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.disclaimer-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.disclaimer-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    position: relative;
    padding-left: 1rem;
}

.disclaimer-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

.disclaimer-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.disclaimer-section ul,
.disclaimer-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.disclaimer-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 0.75rem;
    position: relative;
}

.disclaimer-section ul li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.disclaimer-section ol li {
    counter-increment: list-counter;
}

.disclaimer-section ol li::before {
    content: counter(list-counter) '.';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -2rem;
}

.disclaimer-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Info Section */
.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border: 1px solid rgba(0, 113, 45, 0.1);
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Disclaimer Footer */
.disclaimer-footer {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 113, 45, 0.1);
    margin-top: 3rem;
}

.disclaimer-footer h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.disclaimer-footer h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.disclaimer-footer p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.disclaimer-footer p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--gray);
}

/* Enhanced List Styling */
.disclaimer-section ul li,
.disclaimer-section ol li {
    transition: all 0.3s ease;
}

.disclaimer-section ul li:hover,
.disclaimer-section ol li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Section Numbering */
.disclaimer-section {
    counter-increment: section-counter;
}

.disclaimer-section h2::before {
    content: counter(section-counter) '. ';
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Enhanced Typography */
.disclaimer-section p:first-of-type {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
}

.disclaimer-section p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin: 0.1em 0.1em 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Special styling for disclaimer categories */
.disclaimer-section[data-category="legal"] {
    border-left: 5px solid var(--accent-color);
}

.disclaimer-section[data-category="legal"] h2::after {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.disclaimer-section[data-category="financial"] {
    border-left: 5px solid var(--secondary-color);
}

.disclaimer-section[data-category="financial"] h2::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.disclaimer-section[data-category="technical"] {
    border-left: 5px solid var(--primary-color);
}

.disclaimer-section[data-category="technical"] h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.disclaimer-section[data-category="health"] {
    border-left: 5px solid #e74c3c;
}

.disclaimer-section[data-category="health"] h2::after {
    background: linear-gradient(90deg, #e74c3c, var(--accent-color));
}

/* Enhanced contact info for disclaimer page */
.disclaimer-section .contact-info {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(213, 237, 159, 0.3) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.disclaimer-section .contact-info::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

/* Warning indicators for important disclaimers */
.disclaimer-section.important {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 145, 0, 0.05) 100%);
}

.disclaimer-section.important::before {
    content: '⚠️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    z-index: 2;
}

.disclaimer-section.important h2::after {
    background: linear-gradient(90deg, var(--accent-color), #e74c3c);
}

/* Responsive Design for Disclaimer Page */
@media (max-width: 768px) {
    .disclaimer-page .page-title {
        font-size: 2.5rem;
    }
    
    .disclaimer-page .page-subtitle {
        font-size: 1.2rem;
    }
    
    .disclaimer-page .page-date {
        font-size: 1rem;
    }
    
    .disclaimer-intro {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer-intro h2 {
        font-size: 2rem;
    }
    
    .disclaimer-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer-section h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-section h3 {
        font-size: 1.2rem;
    }
    
    .disclaimer-section ul,
    .disclaimer-section ol {
        padding-left: 1.5rem;
    }
    
    .disclaimer-section ul li::before {
        left: -1.25rem;
    }
    
    .disclaimer-section ol li::before {
        left: -1.75rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .disclaimer-footer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-page .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .disclaimer-page .page-title {
        font-size: 2rem;
    }
    
    .disclaimer-page .page-subtitle {
        font-size: 1.1rem;
    }
    
    .disclaimer-intro {
        padding: 1.5rem 1rem;
    }
    
    .disclaimer-intro h2 {
        font-size: 1.75rem;
    }
    
    .disclaimer-section {
        padding: 1.5rem 1rem;
    }
    
    .disclaimer-section h2 {
        font-size: 1.3rem;
    }
    
    .disclaimer-section h3 {
        font-size: 1.1rem;
        padding-left: 0.75rem;
    }
    
    .disclaimer-section h3::before {
        width: 3px;
        height: 16px;
    }
    
    .disclaimer-section ul,
    .disclaimer-section ol {
        padding-left: 1.25rem;
    }
    
    .disclaimer-section ul li::before {
        left: -1rem;
    }
    
    .disclaimer-section ol li::before {
        left: -1.5rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .disclaimer-footer {
        padding: 1.5rem 1rem;
    }
}

/* Enhanced animations for Disclaimer page */
.disclaimer-intro [data-aos] {
    transition-delay: 0.2s;
}

.disclaimer-section [data-aos] {
    transition-delay: 0.3s;
}

.disclaimer-footer [data-aos] {
    transition-delay: 0.4s;
}

/* Staggered animations for disclaimer sections */
.disclaimer-section:nth-child(1) { transition-delay: 0.1s; }
.disclaimer-section:nth-child(2) { transition-delay: 0.2s; }
.disclaimer-section:nth-child(3) { transition-delay: 0.3s; }
.disclaimer-section:nth-child(4) { transition-delay: 0.4s; }
.disclaimer-section:nth-child(5) { transition-delay: 0.5s; }
.disclaimer-section:nth-child(6) { transition-delay: 0.6s; }
.disclaimer-section:nth-child(7) { transition-delay: 0.7s; }
.disclaimer-section:nth-child(8) { transition-delay: 0.8s; }
.disclaimer-section:nth-child(9) { transition-delay: 0.9s; }
.disclaimer-section:nth-child(10) { transition-delay: 1.0s; }
.disclaimer-section:nth-child(11) { transition-delay: 1.1s; }
.disclaimer-section:nth-child(12) { transition-delay: 1.2s; }
.disclaimer-section:nth-child(13) { transition-delay: 1.3s; }
.disclaimer-section:nth-child(14) { transition-delay: 1.4s; }
.disclaimer-section:nth-child(15) { transition-delay: 1.5s; }

/* Enhanced hover effects */
.disclaimer-section:hover h2::after {
    width: 100px;
    transition: width 0.3s ease;
}

.disclaimer-section:hover h3::before {
    height: 30px;
    transition: height 0.3s ease;
}

/* Print styles for Disclaimer page */
@media print {
    .disclaimer-page .page-hero {
        background: none !important;
        padding: 2rem 0;
    }
    
    .disclaimer-page .page-hero::before {
        display: none;
    }
    
    .disclaimer-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    
    .disclaimer-intro {
        background: #f5f5f5;
        border-left: 3px solid #333;
    }
    
    .disclaimer-footer {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
    
    .contact-info {
        background: #f5f5f5;
        border: 1px solid #ccc;
    }
}

/* Enhanced accessibility for Disclaimer */
.disclaimer-section:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.disclaimer-section h2:focus,
.disclaimer-section h3:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .disclaimer-section {
        border: 2px solid var(--primary-color);
    }
    
    .disclaimer-section h2::after,
    .disclaimer-section h3::before {
        background: var(--primary-color);
    }
    
    .disclaimer-intro {
        border-left: 5px solid var(--primary-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .disclaimer-section,
    .disclaimer-intro,
    .disclaimer-footer {
        transition: none;
    }
    
    .disclaimer-section:hover {
        transform: none;
    }
    
    .disclaimer-section::before,
    .disclaimer-intro::before {
        transition: none;
    }
}