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

:root {
    --primary-color: #000B58;
    --secondary-color: #003161;
    --accent-color: #006A67;
    --highlight-color: #FFF4B7;
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--highlight-color);
    outline-offset: 2px;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
}

.nav-logo .logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-logo h1 {
    color: var(--highlight-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    margin: 0 0.25rem;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem;
    padding-right: 1rem;
}

/* Desktop nav buttons */
.nav-buttons.desktop-only {
    display: flex;
}

/* Hide mobile nav buttons on desktop */
.nav-menu .nav-buttons {
    display: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 106, 103, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 106, 103, 0.4);
}

.btn-login {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-register {
    background: var(--highlight-color);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--highlight-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content */
main {
    margin-top: 80px;
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: var(--background-light);
}

section:nth-child(odd) {
    background-color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
    padding: 6rem 0;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
}

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

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

.hero-image {
    margin-top: 3rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Section Layouts */
.section-content,
.section-image {
    flex: 1;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Login and Register Sections */
.login-section .container,
.register-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.login-section .section-content,
.register-section .section-content {
    width: 100%;
    max-width: 600px;
}

.login-section,
.register-section {
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.login-section::before,
.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.login-section .section-content h2,
.register-section .section-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.login-section .section-content p,
.register-section .section-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.login-section .btn,
.register-section .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

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

.login-section .btn:hover::before,
.register-section .btn:hover::before {
    left: 100%;
}

/* Decorative elements for login and register sections */
.login-section .container::after,
.register-section .container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.login-section .container::before,
.register-section .container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Enhanced styling for login and register sections */
.login-section .section-content,
.register-section .section-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-section .section-content:hover,
.register-section .section-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.login-section .section-content h2,
.register-section .section-content h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background: rgba(0, 106, 103, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 106, 103, 0.2);
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.about-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-color);
}

/* Decorative elements for about section */
.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Enhanced about text styling */
.about-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-text ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* About section animation and effects */
.about-section {
    animation: fadeInUp 0.8s ease-out;
}

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

.about-content {
    animation: slideInLeft 1s ease-out 0.2s both;
}

.about-image {
    animation: slideInRight 1s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Games Section */
.games-section {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, white, var(--background-light));
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.games-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.games-section > p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.game-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.game-card:hover img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.game-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
}

.game-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.game-card .game-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Decorative elements for games section */
.games-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.games-grid::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Games section animations */
.games-section {
    animation: fadeInUp 0.8s ease-out;
}

.games-section h2 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.games-section > p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.games-grid {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.game-card {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

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

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

/* Benefits Section */
.benefits-section {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.benefits-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.benefits-section > p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.benefit-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.benefit-item .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background: rgba(0, 106, 103, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-item:hover .benefit-icon {
    background: rgba(0, 106, 103, 0.2);
    transform: scale(1.1);
    color: var(--secondary-color);
}

.benefit-item .benefit-icon svg {
    width: 40px;
    height: 40px;
}

/* Decorative elements for benefits section */
.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.benefits-grid::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Benefits section animations */
.benefits-section {
    animation: fadeInUp 0.8s ease-out;
}

.benefits-section h2 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.benefits-section > p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.benefits-grid {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.benefit-item {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, white, var(--background-light));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.testimonials-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.testimonials-section > p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .testimonial-rating .star {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-card .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Decorative elements for testimonials section */
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-grid::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Testimonials section animations */
.testimonials-section {
    animation: fadeInUp 0.8s ease-out;
}

.testimonials-section h2 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.testimonials-section > p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.testimonials-grid {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

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

.stat-item h3 {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--background-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    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(--highlight-color);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
    color: var(--highlight-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 70px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .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);
    }

    .nav-buttons {
        display: none;
    }
    
    /* Desktop-only nav buttons */
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile nav buttons styling */
    .nav-menu .nav-buttons {
        display: none;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    /* Show mobile nav buttons when mobile menu is active */
    .nav-menu.active .nav-buttons {
        display: flex !important;
    }
    
    .nav-menu .nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-logo {
        gap: 0.75rem;
        padding-left: 0.75rem;
    }
    
    .nav-logo .logo-img {
        width: 40px;
        height: 40px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .section-content h2,
    .features-section h2,
    .about-section h2,
    .games-section h2,
    .benefits-section h2,
    .testimonials-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .login-section .container,
    .register-section .container,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-section .section-content h2,
    .register-section .section-content h2 {
        font-size: 2.2rem;
    }
    
    .login-section .section-content p,
    .register-section .section-content p {
        font-size: 1.1rem;
    }
    
    .login-section .btn,
    .register-section .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-text p {
        font-size: 1.2rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text ul li {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .games-section {
        padding: 4rem 0;
    }
    
    .games-section h2 {
        font-size: 2.5rem;
    }
    
    .games-section > p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .game-card {
        padding: 2rem;
    }
    
    .benefits-section {
        padding: 4rem 0;
    }
    
    .benefits-section h2 {
        font-size: 2.5rem;
    }
    
    .benefits-section > p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 2rem;
    }
    
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-section > p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .privacy-section {
        padding: 4rem 0;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .page-header p {
        font-size: 1.2rem;
    }
    
    .policy-section {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-info {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-info p {
        font-size: 1.1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .contact-form h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-section h2 {
        font-size: 2.4rem;
    }
    
    .contact-form-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .faq-preview {
        padding: 4rem 0;
    }
    
    .faq-preview h2 {
        font-size: 2.5rem;
    }
    
    .faq-preview p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-preview .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-preview .faq-item {
        padding: 1.5rem;
    }
    
    .terms-section {
        padding: 4rem 0;
    }
    
    .terms-section .page-header h1 {
        font-size: 3rem;
    }
    
    .terms-section .page-header p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .terms-section .terms-article {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-section .terms-article h2 {
        font-size: 2rem;
    }
    
    .terms-section .terms-article h3 {
        font-size: 1.6rem;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-section .page-header h1 {
        font-size: 3rem;
    }
    
    .faq-section .page-header p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .faq-section .faq-category {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-section .faq-category h2 {
        font-size: 2.2rem;
    }
    
    .faq-section .faq-item {
        padding: 1.5rem;
    }
    
    .faq-section .faq-question {
        font-size: 1.2rem;
    }
    
    .disclaimer-section {
        padding: 4rem 0;
    }
    
    .disclaimer-section .page-header h1 {
        font-size: 3rem;
    }
    
    .disclaimer-section .page-header p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .disclaimer-section .disclaimer-article {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer-section .disclaimer-article h2 {
        font-size: 2.2rem;
    }
    
    .disclaimer-section .disclaimer-article h3 {
        font-size: 1.6rem;
    }
    
    .support-section {
        padding: 4rem 0;
    }
    
    .support-section .page-header h1 {
        font-size: 3rem;
    }
    
    .support-section .page-header p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .support-section .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .support-section .support-card {
        padding: 2.5rem;
    }
    
    .support-section .support-card h3 {
        font-size: 1.8rem;
    }
    
    .support-section .contact-support {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }
    
    .support-section .contact-support h2 {
        font-size: 2.4rem;
    }
    
    .support-section .contact-support .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .support-section .departments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-section .department-card {
        padding: 2rem;
    }
    
    .support-section .leaders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-section .leader-card {
        padding: 2.5rem;
    }
    
    .support-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-section .feature-item {
        padding: 2rem;
    }
    
    .support-section .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .support-section .metric-item {
        padding: 2rem 1.5rem;
    }
    
    .support-section .support-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-section .support-option {
        padding: 2rem;
    }
    
    .error-404-section {
        padding: 6rem 0;
    }
    
    .error-404-section .error-number {
        font-size: 8rem;
    }
    
    .error-404-section h1 {
        font-size: 2.8rem;
    }
    
    .error-404-section .error-message {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .error-404-section .error-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .error-404-section .error-help {
        padding: 2.5rem;
        margin: 0 1rem;
    }
    
    .error-404-section .error-help h2 {
        font-size: 1.8rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 2rem 0;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .nav-logo .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo {
        padding-left: 0.5rem;
    }
    
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .section-content h2,
    .features-section h2,
    .about-section h2,
    .games-section h2,
    .benefits-section h2,
    .testimonials-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .login-section .section-content h2,
    .register-section .section-content h2 {
        font-size: 2rem;
    }
    
    .login-section .section-content p,
    .register-section .section-content p {
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-text p {
        font-size: 1.2rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text ul li {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .games-section {
        padding: 3rem 0;
    }
    
    .games-section h2 {
        font-size: 2.2rem;
    }
    
    .games-section > p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .game-card img {
        height: 180px;
    }
    
    .game-card h3 {
        font-size: 1.4rem;
    }
    
    .game-card p {
        font-size: 1rem;
    }
    
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-section h2 {
        font-size: 2.2rem;
    }
    
    .benefits-section > p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.4rem;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
    
    .benefit-item .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-item .benefit-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-section > p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 1.1rem;
    }
    
    .testimonial-card h4 {
        font-size: 1.2rem;
    }
    
    .testimonial-card .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Loading and Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top-btn:hover,
.back-to-top-btn:focus {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-btn svg {
    width: 20px;
    height: 20px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .back-to-top-btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}

/* Privacy Policy Page Styling */
.privacy-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.policy-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.policy-section:hover::before {
    transform: scaleX(1);
}

.policy-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.policy-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    position: relative;
    z-index: 1;
}

.policy-section ul li {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1.5rem;
    top: 0;
}

.policy-section strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Decorative elements for privacy page */
.privacy-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Privacy page animations */
.privacy-section {
    animation: fadeInUp 0.8s ease-out;
}

.page-header {
    animation: slideInDown 1s ease-out 0.2s both;
}

.privacy-content {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.policy-section {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--section-index, 0) * 0.1s);
}

/* Contact Page Styling */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.contact-info:hover::before {
    transform: scaleX(1);
}

.contact-info h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.contact-info p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.contact-method {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 106, 103, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-method p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.contact-method ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-method ul li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.contact-method ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}

.contact-method strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Contact form styling */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.contact-form:hover::before {
    transform: scaleX(1);
}

.contact-form h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 106, 103, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 106, 103, 0.1);
    transform: translateY(-2px);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Decorative elements for contact page */
.contact-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Contact page animations */
.contact-section {
    animation: fadeInUp 0.8s ease-out;
}

.page-header {
    animation: slideInDown 1s ease-out 0.2s both;
}

.contact-content {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-info {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.contact-method {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--method-index, 0) * 0.1s);
}

/* Contact Form Section Styling */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, white, var(--background-light));
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.contact-form-section h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-form-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* FAQ Preview Section Styling */
.faq-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.faq-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.faq-preview h2 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.faq-preview p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.faq-preview .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-preview .faq-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-preview .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-preview .faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.faq-preview .faq-item:hover::before {
    transform: scaleX(1);
}

.faq-preview .faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.faq-preview .faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-preview .faq-item .faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Decorative elements for FAQ preview */
.faq-preview::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-preview .faq-grid::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* FAQ preview animations */
.faq-preview {
    animation: fadeInUp 0.8s ease-out;
}

.faq-preview h2 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.faq-preview p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.faq-preview .faq-grid {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.faq-preview .faq-item {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--faq-index, 0) * 0.1s);
}

/* Terms & Conditions Page Styling */
.terms-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.terms-section .page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
}

.terms-section .page-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.terms-section .terms-article {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.terms-section .terms-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.terms-section .terms-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.terms-section .terms-article:hover::before {
    transform: scaleX(1);
}

.terms-section .terms-article h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.terms-section .terms-article h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.terms-section .terms-article p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.terms-section .terms-article ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    position: relative;
    z-index: 1;
}

.terms-section .terms-article ul li {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    padding-top: 0.25rem;
    transition: all 0.3s ease;
}

.terms-section .terms-article ul li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 0.25rem;
    background: rgba(0, 106, 103, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.terms-section .terms-article ul li:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.terms-section .terms-article ul li:hover::before {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.terms-section .terms-article strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.terms-section .terms-article .highlight-box {
    background: rgba(0, 106, 103, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.terms-section .terms-article .highlight-box p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.terms-section .terms-article .highlight-box strong {
    color: var(--accent-color);
}

/* Decorative elements for terms page */
.terms-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Terms page animations */
.terms-section {
    animation: fadeInUp 0.8s ease-out;
}

.terms-section .page-header h1 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.terms-section .page-header p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.terms-content {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.terms-section .terms-article {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--article-index, 0) * 0.1s);
}

/* FAQ Page Styling */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-section .page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq-section .page-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.faq-section .faq-category {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-section .faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-section .faq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.faq-section .faq-category:hover::before {
    transform: scaleX(1);
}

.faq-section .faq-category h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-section .faq-category h2::before {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-section .faq-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 106, 103, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.faq-section .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-section .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.faq-section .faq-item:hover::before {
    transform: scaleX(1);
}

.faq-section .faq-question {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-section .faq-question::after {
    content: '▼';
    color: var(--accent-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-section .faq-answer {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

.faq-section .faq-item.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-color);
}

/* Decorative elements for FAQ page */
.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* FAQ page animations */
.faq-section {
    animation: fadeInUp 0.8s ease-out;
}

.faq-section .page-header h1 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.faq-section .page-header p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.faq-content {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.faq-section .faq-category {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--category-index, 0) * 0.1s);
}

.faq-section .faq-item {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: calc(var(--item-index, 0) * 0.05s);
}

/* FAQ CTA Styling */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color));
}

.faq-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-cta .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Disclaimer Page Styling */
.disclaimer-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.disclaimer-section .page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
}

.disclaimer-section .page-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.disclaimer-section .disclaimer-article {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.disclaimer-section .disclaimer-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.disclaimer-section .disclaimer-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.disclaimer-section .disclaimer-article:hover::before {
    transform: scaleX(1);
}

.disclaimer-section .disclaimer-article h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.disclaimer-section .disclaimer-article h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.disclaimer-section .disclaimer-article p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.disclaimer-section .disclaimer-article ul {
    margin: 1.5rem 0;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.disclaimer-section .disclaimer-article li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    padding-top: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.disclaimer-section .disclaimer-article li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0.25rem;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: bold;
}

.disclaimer-section .disclaimer-article li:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.disclaimer-section .disclaimer-article li:hover::before {
    transform: scale(1.1);
}

.disclaimer-section .disclaimer-article strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.disclaimer-section .disclaimer-article .highlight-box {
    background: rgba(0, 106, 103, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.disclaimer-section .disclaimer-article .highlight-box p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Decorative elements for disclaimer page */
.disclaimer-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Disclaimer page animations */
.disclaimer-section {
    animation: fadeInUp 0.8s ease-out;
}

.disclaimer-section .page-header h1 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.disclaimer-section .page-header p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.disclaimer-content {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.disclaimer-section .disclaimer-article {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--article-index, 0) * 0.1s);
}

/* Support Page Styling */
.support-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.support-section .page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
}

.support-section .page-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.support-section .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.support-section .support-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-section .support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.support-section .support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.support-section .support-card:hover::before {
    transform: scaleX(1);
}

.support-section .support-card .support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.support-section .support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 106, 103, 0.3);
}

.support-section .support-card h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.support-section .support-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.support-section .support-card .support-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.support-section .support-card .support-features li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.support-section .support-card .support-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.support-section .support-card .support-features li:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.support-section .contact-support {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.support-section .contact-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color));
}

.support-section .contact-support h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.support-section .contact-support p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.support-section .contact-support .support-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.support-section .contact-support .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.support-section .contact-support .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.support-section .contact-support .btn.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.support-section .contact-support .btn.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Decorative elements for support page */
.support-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.support-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Support page animations */
.support-section {
    animation: fadeInUp 0.8s ease-out;
}

.support-section .page-header h1 {
    animation: slideInDown 1s ease-out 0.2s both;
}

.support-section .page-header p {
    animation: slideInUp 1s ease-out 0.4s both;
}

.support-content {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.support-section .support-card {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.support-section .contact-support {
    animation: slideInUp 1s ease-out 0.8s both;
}

/* Enhanced Support Page Sections */
.support-section .support-departments {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.support-section .support-departments h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.support-section .support-departments p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

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

.support-section .department-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-section .department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.support-section .department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.support-section .department-card:hover::before {
    transform: scaleX(1);
}

.support-section .department-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.support-section .department-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: left;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.support-section .department-card .services-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.support-section .department-card .services-list li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.support-section .department-card .services-list li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.support-section .department-card .department-info {
    background: rgba(0, 106, 103, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-color);
    position: relative;
    z-index: 1;
}

.support-section .department-card .department-info .response-time {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.support-section .department-card .department-info .contact-email {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Support Leaders Section */
.support-section .support-leaders {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.support-section .support-leaders h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.support-section .support-leaders p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.support-section .leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.support-section .leader-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-section .leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.support-section .leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.support-section .leader-card:hover::before {
    transform: scaleX(1);
}

.support-section .leader-card .leader-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.support-section .leader-card:hover .leader-avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 11, 88, 0.3);
}

.support-section .leader-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.support-section .leader-card .leader-title {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.support-section .leader-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: left;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.support-section .leader-card .expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.support-section .leader-card .expertise-list li {
    color: var(--text-dark);
    padding: 0.3rem 0;
    margin-bottom: 0.3rem;
    position: relative;
    transition: all 0.3s ease;
}

.support-section .leader-card .expertise-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1rem;
}

/* Support Features Section */
.support-section .support-features {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.support-section .support-features h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.support-section .support-features p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.support-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.support-section .feature-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 106, 103, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-section .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.support-section .feature-item:hover::before {
    transform: scaleX(1);
}

.support-section .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.support-section .feature-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;
    opacity: 1;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Support Metrics Section */
.support-section .support-metrics {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.support-section .support-metrics h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.support-section .support-metrics p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.support-section .metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.support-section .metric-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-section .metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-section .metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.support-section .metric-item:hover::before {
    transform: scaleX(1);
}

.support-section .metric-item .metric-value {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.support-section .metric-item .metric-label {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Get Support Section */
.support-section .get-support {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.support-section .get-support h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.support-section .get-support p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

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

.support-section .support-option {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.support-section .support-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-section .support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.support-section .support-option:hover::before {
    transform: scaleX(1);
}

.support-section .support-option h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.support-section .support-option p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    opacity: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.support-section .support-option .btn {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.support-section .support-option .btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 106, 103, 0.2);
}

/* 404 Page Styling */
.error-404-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--background-light), white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.error-404-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

.error-404-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.error-404-section .error-number {
    font-size: 12rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 10px rgba(0, 11, 88, 0.3),
        0 0 20px rgba(0, 11, 88, 0.2),
        0 0 30px rgba(0, 11, 88, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 5px 15px rgba(0, 11, 88, 0.4));
    letter-spacing: -0.05em;
    text-align: center;
    width: 100%;
}

.error-404-section .error-number::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0, 106, 103, 0.3);
}

.error-404-section h1 {
    color: var(--secondary-color);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 5px 15px rgba(0, 49, 97, 0.2);
    letter-spacing: -0.02em;
}

.error-404-section .error-message {
    color: var(--text-dark);
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.error-404-section .error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.error-404-section .btn {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    font-weight: 600;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 106, 103, 0.3);
    position: relative;
    overflow: hidden;
}

.error-404-section .btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 106, 103, 0.4);
    border-width: 3px;
}

.error-404-section .btn.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.error-404-section .btn.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 49, 97, 0.2);
}

.error-404-section .error-help {
    background: rgba(255, 255, 255, 0.98);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.4s ease;
}

.error-404-section .error-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.error-404-section .error-help:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.error-404-section .error-help:hover::before {
    transform: scaleX(1);
}

.error-404-section .error-help h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 8px rgba(0, 49, 97, 0.15);
}

.error-404-section .error-help ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.error-404-section .error-help li {
    color: var(--text-dark);
    padding: 1rem 0;
    margin-bottom: 0.8rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    font-weight: 500;
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.error-404-section .error-help li::before {
    content: '🔍';
    margin-right: 1rem;
    font-size: 1.2rem;
}

.error-404-section .error-help li:hover {
    color: var(--secondary-color);
    transform: translateX(8px) scale(1.02);
    background: rgba(0, 106, 103, 0.08);
    padding-left: 1.5rem;
}

/* Decorative elements for 404 page */
.error-404-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 106, 103, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.error-404-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Particle effect for 404 page */
.error-404-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 0;
    animation: particle 4s ease-in-out infinite;
    box-shadow: 
        0 0 0 0 rgba(0, 106, 103, 0.7),
        0 0 0 0 rgba(0, 106, 103, 0.7);
}

@keyframes particle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 0 0 rgba(0, 106, 103, 0.7),
            0 0 0 0 rgba(0, 106, 103, 0.7);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        box-shadow: 
            0 0 0 20px rgba(0, 106, 103, 0),
            0 0 0 40px rgba(0, 106, 103, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 0 0 rgba(0, 106, 103, 0.7),
            0 0 0 0 rgba(0, 106, 103, 0.7);
    }
}

.error-404-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 11, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* 404 page animations */
.error-404-section {
    animation: fadeInUp 1s ease-out;
}

.error-404-section .error-number {
    animation: slideInDown 1.2s ease-out 0.2s both;
}

.error-404-section h1 {
    animation: slideInUp 1s ease-out 0.4s both;
}

.error-404-section .error-message {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.error-404-section .error-actions {
    position: relative;
    z-index: 1;
}

.error-404-section .error-actions {
    animation: slideInUp 1s ease-out 0.8s both;
}

.error-404-section .error-help {
    animation: fadeInUp 1s ease-out 1s both;
} 