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

:root {
    --primary-color: #1D2D50;
    --secondary-color: #133B5C;
    --accent-color: #1E5F74;
    --highlight-color: #F8BD7F;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --background-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--highlight-color);
}

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

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-login {
    background: var(--highlight-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-login:hover {
    background: #e6a86f;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--accent-color);
    color: var(--text-light);
    font-weight: 600;
}

.btn-register:hover {
    background: #1a5468;
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-login-large, .btn-register-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin: 1rem 0;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-login-large {
    background: var(--tertiary-color);
    color: var(--text-light);
    border-color: var(--tertiary-color);
}

.btn-login-large:hover {
    background: #2a7a8f;
    border-color: #2a7a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 95, 116, 0.3);
}

.btn-register-large {
    background: var(--tertiary-color);
    color: var(--text-light);
    border-color: var(--tertiary-color);
}

.btn-register-large:hover {
    background: #2a7a8f;
    border-color: #2a7a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 95, 116, 0.3);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

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

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

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--highlight-color);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

/* Hero Section */
.hero-section {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(248, 189, 127, 0.08) 0%, transparent 50%, rgba(30, 95, 116, 0.08) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.hero-actions .btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-actions .btn-primary:hover {
    background: #e6a85c;
}

.hero-actions .btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 3rem;
        min-height: 70vh;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--text-light);
}

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

.feature-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Login and Register Sections */
.login-section, .register-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.login-container, .register-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.register-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.login-content {
    flex: 1;
    max-width: 500px;
}

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

.login-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.register-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    z-index: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
}

.login-image, .register-image1, .register-image2, .register-image3 {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    opacity: 0.9;
}

.register-image1, .register-image2, .register-image3 {
    width: auto;
    max-width: 250px;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .register-container {
        text-align: center;
        gap: 2rem;
    }

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

    .login-visual {
        width: 100%;
        margin-top: 0;
    }
    
    .register-visual {
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .register-image1, .register-image2, .register-image3 {
        max-width: 200px;
    }
}



.login-content h2, .register-content h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.login-content p, .register-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--text-light);
}

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

.about-content h2 {
    margin-bottom: 2rem;
}

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

/* About Page Header */
.page-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* About Hero Section */
.about-hero {
    padding: 5rem 0;
    background: var(--text-light);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-hero h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-hero p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--text-light);
}

.mission-content h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 600;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--text-light);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-light);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.8;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--text-light);
}

.story-content h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    color: var(--text-light);
}

.story-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.timeline-item {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--accent-color);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(248, 189, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.team-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.team-content h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.team-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.team-content li {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-content li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.team-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.team-content p:last-child {
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.achievements-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.achievements-content h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

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

.achievement-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.achievement-text {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.achievement-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.achievement-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-light);
}

/* Future Section */
.future-section {
    padding: 5rem 0;
    background: var(--text-light);
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.future-content h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.future-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.future-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.future-content li {
    background: linear-gradient(135deg, rgba(29, 45, 80, 0.1) 0%, rgba(19, 59, 92, 0.05) 100%);
    margin-bottom: 0;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(29, 45, 80, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.future-content li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 189, 127, 0.1), transparent);
    transition: left 0.6s ease;
}

.future-content li:hover::before {
    left: 100%;
}

.future-content li:hover {
    background: linear-gradient(135deg, rgba(29, 45, 80, 0.15) 0%, rgba(19, 59, 92, 0.1) 100%);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(248, 189, 127, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.future-content li strong {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.future-content li span {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.future-feature {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.future-feature h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.future-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.future-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.future-icon svg {
    width: 48px;
    height: 48px;
    color: var(--text-light);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 4rem;
    }
    
    .values-grid, .achievements-grid, .future-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .timeline-item {
        width: 100%;
        text-align: center;
    }
    
    .team-content ul {
        max-width: 100%;
    }
    
    .team-content li {
        padding: 0.8rem 1.2rem;
    }
    
    .future-content ul {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .future-content li {
        min-height: 180px;
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .about-hero, .mission-section, .values-section, .story-section, .team-section, .achievements-section, .future-section {
        padding: 4rem 0;
    }
    
    .value-card, .achievement-item, .future-feature {
        padding: 2rem 1.5rem;
    }
    
    .team-content li {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    
    .future-content li {
        min-height: 160px;
        padding: 1.2rem 1rem;
    }
    
    .future-content li strong {
        font-size: 1rem;
    }
    
    .future-content li span {
        font-size: 0.9rem;
    }
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: var(--background-light);
}

/* Games Visual Slider */
.games-visual-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    min-height: 400px;
}

.games-visual-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 3rem;
    align-items: flex-start;
}

.game-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 320px;
    min-height: 380px;
    justify-content: space-between;
}

.games-visual-slider img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.games-visual-slider img:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.game-info {
    color: var(--text-light);
    max-width: 250px;
    padding: 1rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 1rem;
}

.slider-arrow.next {
    right: 1rem;
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .games-visual-slider {
        padding: 1.5rem;
        max-width: 100%;
        min-height: 400px;
    }
    
    .games-visual-slider-container {
        gap: 2rem;
    }
    
    .game-slide {
        min-width: 260px;
        min-height: 320px;
    }
    
    .games-visual-slider img {
        width: 160px;
        height: 160px;
        padding: 1rem;
    }
    
    .game-name {
        font-size: 1.1rem;
    }
    
    .game-description {
        font-size: 0.85rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .games-visual-slider {
        padding: 1rem;
        min-height: 350px;
    }
    
    .games-visual-slider-container {
        gap: 1.5rem;
    }
    
    .game-slide {
        min-width: 220px;
        min-height: 280px;
    }
    
    .games-visual-slider img {
        width: 140px;
        height: 140px;
        padding: 0.8rem;
    }
    
    .game-name {
        font-size: 1rem;
    }
    
    .game-description {
        font-size: 0.8rem;
    }
}

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

.game-card {
    background: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3, .game-card p {
    padding: 1.5rem;
    margin: 0;
}

.game-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--text-light);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.testimonial-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--highlight-color);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.testimonial-card cite {
    color: var(--accent-color);
    font-weight: 600;
    padding-left: 2rem;
}

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

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

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

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--text-light);
}

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

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-actions {
    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: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .nav-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 1rem;
    }

    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 4rem 0;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .game-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .nav-actions {
        gap: 0.3rem;
    }
    
    .nav-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: auto;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-muted: #000000;
        --border-color: #000000;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-actions,
    .hero-actions,
    .cta-actions,
    .footer {
        display: none;
    }

    body {
        color: #000000;
        background: #ffffff;
    }

    main {
        margin-top: 0;
    }
}

/* FAQ Page Styles */
.faq-search {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    color: var(--text-light);
    position: relative;
}

.faq-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(248, 189, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.faq-search-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.faq-search h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

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

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    background: var(--text-light);
    box-shadow: 0 0 0 3px rgba(248, 189, 127, 0.3);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: #e6a85c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 189, 127, 0.3);
}

.faq-categories {
    padding: 5rem 0;
    background: var(--text-light);
}

.faq-categories-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-categories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

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

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.category-tab {
    background: rgba(29, 45, 80, 0.1);
    color: var(--primary-color);
    border: 2px solid transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 189, 127, 0.2), transparent);
    transition: left 0.6s ease;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    background: rgba(29, 45, 80, 0.15);
    border-color: rgba(248, 189, 127, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(248, 189, 127, 0.3);
    transform: translateY(-2px);
}

.category-tab.active::before {
    display: none;
}

.category-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-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.3s ease;
}

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

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(248, 189, 127, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(248, 189, 127, 0.3);
}

.category-icon .icon {
    width: 35px;
    height: 35px;
    color: var(--text-light);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.8;
    font-size: 1rem;
}

.faq-content {
    padding: 5rem 0;
    background: var(--background-light);
}

.faq-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

.faq-item {
    background: var(--text-light);
    border: 2px solid transparent;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: rgba(248, 189, 127, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.8rem;
    background: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: rgba(248, 189, 127, 0.05);
    color: var(--secondary-color);
}

.faq-question.active {
    background: var(--accent-color);
    color: var(--primary-color);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-toggle::after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-question.active .faq-toggle::before {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 189, 127, 0.02);
}

.faq-answer.active {
    padding: 1.8rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
    position: relative;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(248, 189, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Support Page Sections */
.support-methods {
    padding: 5rem 0;
    background: var(--background-light);
    color: var(--text-dark);
}

.support-methods .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-methods .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

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

.support-method-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.support-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 189, 127, 0.1), transparent);
    transition: left 0.8s ease;
}

.support-method-card:hover::before {
    left: 100%;
}

.support-method-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-method-card .method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(248, 189, 127, 0.4);
}

.support-method-card .method-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-light);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.support-method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.support-method-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.support-method-card .btn {
    margin-bottom: 1rem;
    display: inline-block;
}

.support-method-card .response-time {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Common Issues Section */
.common-issues {
    padding: 5rem 0;
    background: var(--text-light);
    color: var(--text-dark);
}

.common-issues .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.common-issues .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

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

.issue-card {
    background: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.issue-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.3s ease;
}

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

.issue-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.issue-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.issue-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.issue-card ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.issue-card li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.issue-card .issue-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.issue-card .issue-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Support Resources Section */
.support-resources {
    padding: 5rem 0;
    background: var(--background-light);
    color: var(--text-dark);
}

.support-resources .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-resources .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

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

.resource-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-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.3s ease;
}

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

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.resource-card .resource-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.resource-card .resource-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Support Team Section */
.support-team {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.support-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(248, 189, 127, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.support-team .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-team .section-title {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.support-team .team-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.support-team .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.support-team .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.support-team .stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-team .stat-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Escalation Process Section */
.escalation-process {
    padding: 5rem 0;
    background: var(--text-light);
    color: var(--text-dark);
}

.escalation-process .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.escalation-process .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

.escalation-process .escalation-content {
    text-align: center;
    margin-bottom: 3rem;
}

.escalation-process .escalation-content p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.escalation-process .step {
    background: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.escalation-process .step::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;
}

.escalation-process .step:hover::before {
    transform: scaleX(1);
}

.escalation-process .step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.escalation-process .step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.escalation-process .step p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Feedback Section */
.feedback-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(248, 189, 127, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.feedback-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.feedback-section .section-title {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feedback-section .feedback-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feedback-section .feedback-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-section .feedback-actions .btn {
    min-width: 200px;
    transition: all 0.3s ease;
}

.feedback-section .feedback-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--background-light);
    color: var(--text-dark);
}

.terms-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-content .content-wrapper {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 45, 80, 0.1);
}

.terms-content h2 {
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
}

.terms-content h2:first-of-type {
    margin-top: 0;
}

.terms-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.terms-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.terms-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.terms-content ul {
    margin: 1.5rem 0 2rem 2rem;
    padding: 0;
}

.terms-content li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    position: relative;
    opacity: 0.9;
}

.terms-content li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1rem;
    top: -0.1rem;
}

.terms-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.terms-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.terms-content .terms-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-content .terms-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(248, 189, 127, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.terms-content .terms-footer > * {
    position: relative;
    z-index: 2;
}

.terms-content .terms-footer p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.terms-content .terms-footer p strong {
    color: var(--accent-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Privacy Content Section */
.privacy-content {
    padding: 5rem 0;
    background: var(--background-light);
    color: var(--text-dark);
}

.privacy-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-content .content-wrapper {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 45, 80, 0.1);
}

.privacy-content h2 {
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.privacy-content h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
}

.privacy-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.privacy-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-content ul {
    margin: 1.5rem 0 2rem 2rem;
    padding: 0;
}

.privacy-content li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    position: relative;
    opacity: 0.9;
}

.privacy-content li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1rem;
    top: -0.1rem;
}

.privacy-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.privacy-content .policy-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-content .policy-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(248, 189, 127, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.privacy-content .policy-footer > * {
    position: relative;
    z-index: 2;
}

.privacy-content .policy-footer p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.privacy-content .policy-footer p strong {
    color: var(--accent-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Disclaimer Content Section */
.disclaimer-content {
    padding: 5rem 0;
    background: var(--background-light);
    color: var(--text-dark);
}

.disclaimer-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.disclaimer-content .content-wrapper {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 45, 80, 0.1);
}

.disclaimer-content .warning-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.disclaimer-content .warning-box::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.8s ease;
}

.disclaimer-content .warning-box:hover::before {
    left: 100%;
}

.disclaimer-content .warning-box h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.disclaimer-content .warning-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.disclaimer-content h2 {
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
}

.disclaimer-content h2:first-of-type {
    margin-top: 0;
}

.disclaimer-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.disclaimer-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.disclaimer-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.disclaimer-content ul {
    margin: 1.5rem 0 2rem 2rem;
    padding: 0;
}

.disclaimer-content li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    position: relative;
    opacity: 0.9;
}

.disclaimer-content li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1rem;
    top: -0.1rem;
}

.disclaimer-content .disclaimer-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.disclaimer-content .disclaimer-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(248, 189, 127, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.disclaimer-content .disclaimer-footer > * {
    position: relative;
    z-index: 2;
}

.disclaimer-content .disclaimer-footer h2 {
    color: var(--text-light);
    border-bottom: 3px solid var(--accent-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.disclaimer-content .disclaimer-footer h2::after {
    background: linear-gradient(90deg, var(--accent-color), var(--tertiary-color));
}

.disclaimer-content .disclaimer-footer p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.disclaimer-content .disclaimer-footer p strong {
    color: var(--accent-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.disclaimer-content .disclaimer-footer ul {
    margin: 1.5rem 0;
    list-style: none;
}

.disclaimer-content .disclaimer-footer li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.disclaimer-content .disclaimer-footer li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
    position: static;
}

/* FAQ Preview Section */
.faq-preview {
    padding: 5rem 0;
    background: var(--background-light);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.faq-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(248, 189, 127, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(29, 45, 80, 0.03) 0%, transparent 60%);
    z-index: 1;
}

.faq-preview-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-preview h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

.faq-preview p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

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

.faq-topic {
    background: var(--text-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.faq-topic::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;
}

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

.faq-topic:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(248, 189, 127, 0.2);
}

.faq-topic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-topic:hover .faq-topic-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(248, 189, 127, 0.3);
}

.faq-topic-icon svg {
    width: 30px;
    height: 30px;
    color: var(--text-light);
}

.faq-topic h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-topic p {
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
}

.faq-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-preview-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(248, 189, 127, 0.3);
}

.faq-preview-btn:hover {
    background: #e6a85c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 189, 127, 0.4);
}

.faq-contact-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.faq-contact h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(248, 189, 127, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(248, 189, 127, 0.3);
}

.contact-icon .icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.contact-item h3 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq-search {
        padding: 3rem 0;
    }
    
    .faq-categories, .faq-content, .faq-contact, .faq-preview {
        padding: 4rem 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .category-tabs {
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }
    
    .category-tab {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-input, .search-btn {
        width: 100%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-topics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-topic {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .faq-search, .faq-categories, .faq-content, .faq-contact, .faq-preview {
        padding: 3rem 0;
    }
    
    .faq-search-content, .faq-categories-content, .faq-content-wrapper, .faq-contact-content {
        padding: 0 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-tabs {
        gap: 0.6rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .category-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
    }
    
    .faq-preview-container {
        padding: 0 1rem;
    }
    
    .faq-topics {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .faq-topic {
        padding: 1.2rem 1rem;
    }
    
    .faq-topic-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .faq-topic-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .faq-topic h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .faq-topic p {
        font-size: 0.9rem;
    }
    
    .faq-preview-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    color: var(--text-light);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
    z-index: 1;
    animation: subtle-shine 8s ease-in-out infinite;
}

@keyframes subtle-shine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    color: var(--primary-color);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--text-light);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

.contact-form {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(29, 45, 80, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(29, 45, 80, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--text-light);
    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 4px rgba(248, 189, 127, 0.1);
    transform: translateY(-1px);
}

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

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

.submit-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #e6a85c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 189, 127, 0.3);
}

.contact-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(248, 189, 127, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.contact-info-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-container h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(248, 189, 127, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info-icon {
    width: 90px;
    height: 90px;
    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;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-info-card:hover .contact-info-icon::before {
    transform: translateX(100%);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(248, 189, 127, 0.4);
}

.contact-info-icon .icon {
    width: 45px;
    height: 45px;
    color: var(--text-light);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-info-card:hover .contact-info-icon .icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact-info-card h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info-card a:hover {
    color: var(--text-light);
    transform: translateX(3px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Contact Methods Section */
.contact-methods {
    padding: 5rem 0;
    background: var(--background-light);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.contact-methods-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-methods h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

.contact-methods p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

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

.method-card {
    background: var(--text-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(29, 45, 80, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.method-card:hover::before {
    left: 100%;
}

.method-card:hover {
    background: var(--text-light);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 90px;
    height: 90px;
    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;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.method-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.method-card:hover .method-icon::before {
    transform: translateX(100%);
}

.method-card:hover .method-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(248, 189, 127, 0.4);
}

.method-icon svg {
    width: 45px;
    height: 45px;
    color: var(--text-light);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.method-card:hover .method-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.method-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

.method-card .method-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(29, 45, 80, 0.1);
    width: 100%;
}

.method-card .method-details p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.method-card .method-details strong {
    color: var(--accent-color);
    font-weight: 600;
}

.method-card .method-details a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.method-card .method-details a:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* Contact Page Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }
    
    .contact-form-section, .contact-info-section, .contact-methods, .response-time-section {
        padding: 4rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 2.5rem 2rem;
        min-height: 250px;
    }
    
    .contact-info-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-icon .icon {
        width: 40px;
        height: 40px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .method-card {
        padding: 2.5rem 2rem;
        min-height: 250px;
    }
    
    .method-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .method-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .response-time-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .response-time-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .response-time-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .response-time-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .response-time-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 4rem 0 3rem;
        min-height: 40vh;
    }
    
    .contact-hero-content, .contact-form-container, .contact-info-container, .contact-methods-container, .response-time-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
        min-height: 220px;
    }
    
    .contact-info-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-icon .icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-methods {
        padding: 3rem 0;
    }
    
    .methods-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
        min-height: 220px;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .method-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .method-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .method-card p {
        font-size: 0.95rem;
    }
    
    .method-card .method-details {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .response-time-section {
        padding: 3rem 0;
    }
    
    .response-time-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .response-time-card {
        padding: 1.5rem 1rem;
        min-height: 160px;
    }
    
    .response-time-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .response-time-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .response-time-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .response-time-card .time-info {
        font-size: 1rem;
    }
    
    .response-time-card .time-description {
        font-size: 0.9rem;
    }
    
    .response-time-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
} 

/* Response Time Section */
.response-time-section {
    padding: 4rem 0;
    background: var(--background-light);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.response-time-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.response-time-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 600;
}

.response-time-section p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

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

.response-time-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(29, 45, 80, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.response-time-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.response-time-card:hover::before {
    left: 100%;
}

.response-time-card:hover {
    background: var(--text-light);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.response-time-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.response-time-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.response-time-card:hover .response-time-icon::before {
    transform: translateX(100%);
}

.response-time-card:hover .response-time-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(248, 189, 127, 0.4);
}

.response-time-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-light);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.response-time-card:hover .response-time-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.response-time-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.response-time-card .time-info {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.response-time-card .time-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

.response-time-card .status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.response-time-card .status-online {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.response-time-card .status-busy {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.response-time-card .status-offline {
    background: #f87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.response-time-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(29, 45, 80, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(29, 45, 80, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
} 

/* Disclaimer Content Responsive Styles */
@media (max-width: 768px) {
    .disclaimer-content {
        padding: 3rem 0;
    }
    
    .disclaimer-content .container {
        padding: 0 1.5rem;
    }
    
    .disclaimer-content .content-wrapper {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .disclaimer-content .warning-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer-content .warning-box h2 {
        font-size: 1.3rem;
    }
    
    .disclaimer-content .warning-box p {
        font-size: 1rem;
    }
    
    .disclaimer-content h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }
    
    .disclaimer-content .disclaimer-footer {
        padding: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-content {
        padding: 2rem 0;
    }
    
    .disclaimer-content .container {
        padding: 0 1rem;
    }
    
    .disclaimer-content .content-wrapper {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .disclaimer-content .warning-box {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .disclaimer-content .warning-box h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .disclaimer-content .warning-box p {
        font-size: 0.95rem;
    }
    
    .disclaimer-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .disclaimer-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .disclaimer-content ul {
        margin: 1rem 0 1.5rem 1.5rem;
    }
    
    .disclaimer-content li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .disclaimer-content .disclaimer-footer {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
    
    .disclaimer-content .disclaimer-footer h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .disclaimer-content .disclaimer-footer p {
        font-size: 0.95rem;
    }
}

/* Privacy Content Responsive Styles */
@media (max-width: 768px) {
    .privacy-content {
        padding: 3rem 0;
    }
    
    .privacy-content .container {
        padding: 0 1.5rem;
    }
    
    .privacy-content .content-wrapper {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .privacy-content h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }
    
    .privacy-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .privacy-content .policy-footer {
        padding: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 2rem 0;
    }
    
    .privacy-content .container {
        padding: 0 1rem;
    }
    
    .privacy-content .content-wrapper {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .privacy-content h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem 0;
        padding-left: 0.8rem;
    }
    
    .privacy-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .privacy-content ul {
        margin: 1rem 0 1.5rem 1.5rem;
    }
    
    .privacy-content li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .privacy-content .policy-footer {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
    
    .privacy-content .policy-footer p {
        font-size: 0.95rem;
    }
}

/* Terms Content Responsive Styles */
@media (max-width: 768px) {
    .terms-content {
        padding: 3rem 0;
    }
    
    .terms-content .container {
        padding: 0 1.5rem;
    }
    
    .terms-content .content-wrapper {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .terms-content h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-content .terms-footer {
        padding: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 2rem 0;
    }
    
    .terms-content .container {
        padding: 0 1rem;
    }
    
    .terms-content .content-wrapper {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .terms-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .terms-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .terms-content ul {
        margin: 1rem 0 1.5rem 1.5rem;
    }
    
    .terms-content li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .terms-content .terms-footer {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
    
    .terms-content .terms-footer p {
        font-size: 0.95rem;
    }
}

/* Support Page Responsive Styles */
@media (max-width: 768px) {
    .support-methods, .common-issues, .support-resources, .support-team, .escalation-process, .feedback-section {
        padding: 3rem 0;
    }
    
    .support-methods .container, .common-issues .container, .support-resources .container, .support-team .container, .escalation-process .container, .feedback-section .container {
        padding: 0 1.5rem;
    }
    
    .support-methods-grid, .issues-grid, .resources-grid, .escalation-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-team .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .support-method-card, .issue-card, .resource-card, .escalation-process .step {
        padding: 2rem 1.5rem;
    }
    
    .support-method-card .method-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .support-method-card .method-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .feedback-section .feedback-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .feedback-section .feedback-actions .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .support-methods, .common-issues, .support-resources, .support-team, .escalation-process, .feedback-section {
        padding: 2rem 0;
    }
    
    .support-methods .container, .common-issues .container, .support-resources .container, .support-team .container, .escalation-process .container, .feedback-section .container {
        padding: 0 1rem;
    }
    
    .support-methods-grid, .issues-grid, .resources-grid, .escalation-steps {
        gap: 1rem;
    }
    
    .support-team .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-method-card, .issue-card, .resource-card, .escalation-process .step {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .support-method-card .method-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .support-method-card .method-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .support-method-card h3, .issue-card h3, .resource-card h3, .escalation-process .step h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .support-method-card p, .issue-card p, .resource-card p, .escalation-process .step p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .support-team .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .support-team .stat-item h3 {
        font-size: 2rem;
    }
    
    .feedback-section .feedback-actions .btn {
        min-width: 200px;
        padding: 1rem 1.5rem;
    }
}

/* 404 Error Page Styles */
.error-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(248, 189, 127, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.error-section .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.error-text h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.error-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.error-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.error-actions {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.error-actions .btn {
    margin: 0 1rem 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.error-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.helpful-links {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.helpful-links h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.helpful-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.helpful-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.search-suggestion {
    background: rgba(248, 189, 127, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(248, 189, 127, 0.2);
    animation: fadeInUp 0.8s ease 1s both;
}

.search-suggestion h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-suggestion p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.search-suggestion .btn {
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-suggestion .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

/* 404 Page Responsive Styles */
@media (max-width: 768px) {
    .error-section {
        padding: 6rem 0 3rem;
        min-height: 70vh;
    }
    
    .error-section .container {
        padding: 0 1.5rem;
    }
    
    .error-text h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .error-text h2 {
        font-size: clamp(1.3rem, 3vw, 2rem);
    }
    
    .error-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .error-actions .btn {
        margin: 0 0.5rem 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .helpful-links, .search-suggestion {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .helpful-links ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .error-section {
        padding: 5rem 0 2rem;
        min-height: 60vh;
    }
    
    .error-section .container {
        padding: 0 1rem;
    }
    
    .error-text h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .error-text h2 {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }
    
    .error-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .error-actions .btn {
        margin: 0 0 1rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        min-width: 160px;
        width: 100%;
        max-width: 280px;
    }
    
    .helpful-links, .search-suggestion {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .helpful-links h3, .search-suggestion h3 {
        font-size: 1.3rem;
    }
    
    .helpful-links a {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(248, 189, 127, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(248, 189, 127, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Back to Top Button Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .back-to-top svg {
        width: 16px;
        height: 16px;
    }
}