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

:root {
    /* ColorHunt Palette - ONLY these colors allowed */
    --vibrant-orange: #FF9843;      /* Primary buttons, key highlights */
    --soft-peach: #FFDD95;          /* Backgrounds, secondary sections */
    --periwinkle-blue: #86A7FC;     /* Accents, links, interactive elements */
    --bright-blue: #3468C0;         /* Bold CTAs, headers, strong visuals */
    
    /* Font color - MUST be white for all text */
    --text-color: #FFFFFF;
    
    /* Hover/Focus variations using palette colors */
    --vibrant-orange-hover: #E68A3A;    /* Darker orange for hover */
    --soft-peach-hover: #E6C785;        /* Darker peach for hover */
    --periwinkle-blue-hover: #7A96E3;   /* Darker periwinkle for hover */
    --bright-blue-hover: #2D5AA0;       /* Darker blue for hover */
    
    /* Shadows using palette colors */
    --shadow: 0 4px 6px -1px rgba(255, 152, 67, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(255, 152, 67, 0.3);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

a:hover {
    color: var(--periwinkle-blue-hover);
}

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

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    border-radius: 50%;
    object-fit: cover;
}

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

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

.nav-menu li {
    list-style: none;
}

.nav-menu .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link:focus,
.nav-menu .nav-link.active {
    color: var(--vibrant-orange);
    background-color: var(--soft-peach);
}

.nav-menu .btn {
    margin-left: 1rem;
}

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

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

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

.btn-primary:hover,
.btn-primary:focus {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-login {
    background-color: var(--periwinkle-blue);
    color: var(--text-color);
}

.btn-login:hover,
.btn-login:focus {
    background-color: var(--periwinkle-blue-hover);
    transform: translateY(-2px);
}

.btn-register {
    background-color: var(--vibrant-orange);
    color: var(--text-color);
}

.btn-register:hover,
.btn-register:focus {
    background-color: var(--vibrant-orange-hover);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--vibrant-orange), var(--soft-peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 50%, var(--soft-peach) 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--periwinkle-blue) 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Login and Register Sections */
.login-section,
.register-section {
    padding: 4rem 0;
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--vibrant-orange) 100%);
}

/* About Page Specific Styles */
.about-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

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

.mission-section {
    text-align: center;
    margin-bottom: 4rem;
}

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

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

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

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

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--vibrant-orange);
}

.value-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.why-choose-section {
    margin-bottom: 4rem;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

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

.reason-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--vibrant-orange);
}

.reason-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.team-section {
    text-align: center;
    margin-bottom: 4rem;
}

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

.team-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--vibrant-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-color);
    font-size: 1rem;
}

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

.commitment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.commitment-section p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.commitment-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.commitment-list li {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: var(--text-color);
    position: relative;
    padding-left: 3rem;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--vibrant-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ Page Specific Styles */
.faq-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--vibrant-orange);
    text-align: center;
    position: relative;
}

.faq-category h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--vibrant-orange);
    border-radius: 2px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.faq-question {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-answer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Privacy Policy, Terms & Conditions, Disclaimer Page Styles */
.legal-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
}

.legal-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}

.legal-sections {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.legal-section h3 {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin: 0;
    color: var(--vibrant-orange);
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section-content {
    padding: 1.5rem;
}

.legal-section-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section-content ul {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section-content li {
    margin-bottom: 0.5rem;
}

.legal-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Contact Page Specific Styles */
.contact-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--vibrant-orange);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--vibrant-orange);
    width: 40px;
    text-align: center;
}

.contact-details h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--vibrant-orange);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--vibrant-orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 152, 67, 0.1);
}

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

.contact-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* 404 Error Page Styles */
.error-section {
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    margin-bottom: 3rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links {
    margin-bottom: 3rem;
}

.helpful-links h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.helpful-links p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

.link-category li {
    margin-bottom: 0.5rem;
}

.link-category a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.link-category a:hover {
    text-decoration: underline;
}

.search-suggestion {
    margin-bottom: 3rem;
    text-align: center;
}

.search-suggestion h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.search-suggestion p {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Games Section */
.games-section {
    padding: 4rem 0;
}

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

.game-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.game-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-color);
}

.game-card p {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

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

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

.benefit-item {
    text-align: center;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card cite {
    color: var(--text-light);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--background-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;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section .section-title,
.cta-section .section-description {
    color: white;
}

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

.cta-section .btn {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn:hover,
.cta-section .btn:focus {
    background: var(--background-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
    color: var(--text-color);
    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 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover,
.footer-section ul li a:focus {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover,
.social-link:focus {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem;
        border-radius: 0;
        width: 100%;
    }

    .nav-menu .btn {
        margin: 0.5rem auto;
        display: block;
        width: 200px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .error-content h1 {
        font-size: 4rem;
    }
}

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

    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .features,
    .about,
    .games,
    .benefits,
    .testimonials,
    .stats,
    .cta {
        padding: 2rem 0;
    }

    .feature-card,
    .game-card,
    .benefit-item,
    .testimonial-card {
        padding: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .about-content,
    .faq-content,
    .privacy-content,
    .terms-content,
    .disclaimer-content,
    .contact-content {
        padding: 1.5rem;
    }
}

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid var(--text-color);
    }
    
    .nav-link {
        border: 1px solid var(--text-color);
    }
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--vibrant-orange);
    color: var(--text-color);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1001;
}

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

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Login and Register Section */
.login-register {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--periwinkle-blue) 0%, var(--bright-blue) 100%);
    text-align: center;
}

.login-register h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.login-register p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-register .btn {
    margin: 0 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Register Section */
.register-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--vibrant-orange) 100%);
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.register-content h3 {
    color: var(--text-color);
    margin: 2rem 0 1.5rem;
    font-size: 1.8rem;
}

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

.register-content .btn {
    margin: 2rem 0 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.register-note {
    color: var(--text-color);
    font-size: 1rem;
}

.register-note a {
    color: var(--bright-blue);
    text-decoration: underline;
}

.register-note a:hover {
    color: var(--bright-blue-hover);
}

/* Steps List Styling */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 2rem 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    counter-increment: step-counter;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.steps-list li::before {
    content: counter(step-counter);
    background: var(--vibrant-orange);
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 1;
}

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

/* Hero Images */
.hero-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.hero-image-login img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Login Section */
.login-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.login-content h3 {
    color: var(--text-color);
    margin: 2rem 0 1.5rem;
    font-size: 1.8rem;
}

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

.login-content ul {
    color: var(--text-color);
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.login-content li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.login-content .btn {
    margin: 2rem 0 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.login-note {
    color: var(--text-color);
    font-size: 1rem;
}

.login-note a {
    color: var(--vibrant-orange);
    text-decoration: underline;
}

.login-note a:hover {
    color: var(--vibrant-orange-hover);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }

    .register-content h3,
    .login-content h3 {
        font-size: 1.5rem;
    }

    .steps-list li {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .steps-list li::before {
        margin: 0 auto 1rem;
    }

    .step-icon {
        margin: 0 auto 0.5rem;
        font-size: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-login {
        order: -1;
    }

    .hero-image img,
    .hero-image-login img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .register-section,
    .login-section {
        padding: 2rem 0;
    }

    .register-content h2,
    .login-content h2 {
        font-size: 1.8rem;
    }

    .register-content h3,
    .login-content h3 {
        font-size: 1.3rem;
    }

    .steps-list li {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .step-content {
        font-size: 1rem;
    }

    .hero-image img,
    .hero-image-login img {
        max-width: 250px;
    }
}

/* Games Slider Section Styles */
.games-slider-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--periwinkle-blue) 100%);
    position: relative;
    overflow: hidden;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--vibrant-orange), var(--soft-peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emoji {
    font-size: 3.5rem;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.language-badge {
    display: inline-block;
    background: var(--vibrant-orange);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.mobile-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    perspective: 1000px;
}

.slider-wrapper {
    overflow: visible;
    border-radius: 20px;
    position: relative;
}

.slider-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    min-height: 600px;
}

.slide-item {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

/* Center slide (fully visible) */
.slide-item[data-index="2"] {
    z-index: 10;
    transform: scale(1) rotateY(0deg) translateX(0);
    opacity: 1;
}

/* Left slides (progressively more obscured) */
.slide-item[data-index="1"] {
    z-index: 5;
    transform: scale(0.85) rotateY(15deg) translateX(60px);
    filter: brightness(0.8);
    opacity: 0.8;
}

.slide-item[data-index="0"] {
    z-index: 3;
    transform: scale(0.7) rotateY(25deg) translateX(120px);
    filter: brightness(0.6);
    opacity: 0.6;
}

/* Right slides (progressively more obscured) */
.slide-item[data-index="3"] {
    z-index: 5;
    transform: scale(0.85) rotateY(-15deg) translateX(-60px);
    filter: brightness(0.8);
    opacity: 0.8;
}

.slide-item[data-index="4"] {
    z-index: 3;
    transform: scale(0.7) rotateY(-25deg) translateX(-120px);
    filter: brightness(0.6);
    opacity: 0.6;
}

.mobile-frame {
    position: relative;
    width: 280px;
    height: 500px;
    border-radius: 30px;
    padding: 15px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.mobile-frame:hover .mobile-screen {
    transform: scale(1.02);
}

.game-amount {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--vibrant-orange);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.game-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.game-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--vibrant-orange);
}

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    z-index: 20;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-nav svg {
    width: 20px;
    height: 20px;
}

.slider-description {
    text-align: center;
    margin-top: 3rem;
}

.slider-description p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Active slide styling */
.slide-item.active {
    z-index: 15;
}

.slide-item.active .mobile-frame {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--vibrant-orange);
}

/* Slide indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slide-indicator.active {
    background: var(--vibrant-orange);
    transform: scale(1.2);
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
    .slider-title {
        font-size: 2.5rem;
    }
    
    .emoji {
        font-size: 3rem;
    }
    
    .mobile-frame {
        width: 260px;
        height: 470px;
    }
    
    /* Adjust transforms for smaller screens */
    .slide-item[data-index="1"] {
        transform: scale(0.8) rotateY(12deg) translateX(40px);
    }
    
    .slide-item[data-index="0"] {
        transform: scale(0.65) rotateY(20deg) translateX(80px);
    }
    
    .slide-item[data-index="3"] {
        transform: scale(0.8) rotateY(-12deg) translateX(-40px);
    }
    
    .slide-item[data-index="4"] {
        transform: scale(0.65) rotateY(-20deg) translateX(-80px);
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 3rem 0;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .emoji {
        font-size: 2.5rem;
    }
    
    .mobile-slider-container {
        padding: 0 1rem;
    }
    
    .mobile-frame {
        width: 230px;
        height: 420px;
        padding: 12px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav svg {
        width: 18px;
        height: 18px;
    }
    
    /* Adjust transforms for mobile */
    .slide-item[data-index="1"] {
        transform: scale(0.75) rotateY(10deg) translateX(30px);
    }
    
    .slide-item[data-index="0"] {
        transform: scale(0.6) rotateY(15deg) translateX(60px);
    }
    
    .slide-item[data-index="3"] {
        transform: scale(0.75) rotateY(-10deg) translateX(-30px);
    }
    
    .slide-item[data-index="4"] {
        transform: scale(0.6) rotateY(-15deg) translateX(-60px);
    }
}

@media (max-width: 480px) {
    .slider-title {
        font-size: 1.8rem;
    }
    
    .emoji {
        font-size: 2.2rem;
    }
    
    .language-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .mobile-frame {
        width: 200px;
        height: 380px;
        padding: 10px;
    }
    
    .game-amount {
        top: 20px;
        right: 20px;
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .slider-description p {
        font-size: 1.1rem;
    }
    
    /* Hide side slides on very small screens */
    .slide-item[data-index="0"],
    .slide-item[data-index="4"] {
        display: none;
    }
    
    .slide-item[data-index="1"] {
        transform: scale(0.8) rotateY(8deg) translateX(20px);
    }
    
    .slide-item[data-index="3"] {
        transform: scale(0.8) rotateY(-8deg) translateX(-20px);
    }
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sections {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .mission-section h2,
    .why-choose-section h2,
    .team-section h2,
    .commitment-section h2 {
        font-size: 2rem;
    }
    
    .faq-category h2 {
        font-size: 1.8rem;
    }
    
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .legal-intro h2 {
        font-size: 2rem;
    }
}


