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

:root {
    --primary-color: #880101;
    --primary-dark: #6a0001;
    --primary-light: #a00002;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    color: var(--primary);
}
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    min-height: 56px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%), url('assets/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.trust-icon {
    color: var(--primary-color);
    font-weight: bold;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 280px;
    height: 560px;
    background-color: var(--black);
    border-radius: 30px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.app-interface {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 22px;
    overflow: hidden;
}

.app-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.app-content {
    padding: 1rem;
}

.match-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background-color: var(--gray-50);
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--gray-300);
    border-radius: 50%;
}

.match-info h4 {
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.match-info p {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.verified-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.features-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--gray-50);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

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

/* Feature Icons */
.feature-icon {
    font-size: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(136, 1, 1, 0.3);
}

/* Image placeholders */
.placeholder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

.team-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
    box-shadow: var(--shadow-md);
}

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

.feature-card p {
    color: var(--gray-600);
}

/* ShowScore™ Section */
.showscore-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.showscore-section h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.showscore-section h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
}

.showscore-section .content-text p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.rating-system {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.rating-system h4 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.rating-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.rating-category:last-child {
    border-bottom: none;
}

.category-label {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--gray-300);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.star.filled {
    color: #c6aa76;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.sport-tag {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.rating-display {
    display: flex;
    gap: 0.125rem;
}

.rating-display .star {
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.privacy-note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.privacy-note p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
    font-style: italic;
}

/* How It Works Preview */
.how-it-works-preview {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.app-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: var(--white);
    color: var(--gray-900);
    padding: 60px 0 20px;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-section.main-brand {
    flex: 0 0 auto;
    min-width: 200px;
}

.footer-section.main-brand h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.footer-section.main-brand p {
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.footer-section.main-brand .social-links {
    margin-top: 0.5rem;
}

.footer-section.compact-links {
    flex: 0 0 auto;
    min-width: 150px;
    text-align: left;
}

.footer-section.compact-links h5 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
}

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

.footer-section.compact-links li {
    margin-bottom: 0.25rem;
}

.footer-section.compact-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-section.compact-links a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(136, 1, 1, 0.3);
}

.social-links img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.6);
    transition: filter 0.3s ease;
}

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

.footer-bottom p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-cta .btn {
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showscore-section .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .testimonial-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

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

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

    .phone-screen {
        width: 240px;
        height: 480px;
    }
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    text-align: center !important;
}

/* Features Detail */
.features-detail {
    padding: 80px 0;
    background-color: var(--white);
}

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

.feature-card-large {
    padding: 2.5rem;
    border-radius: 16px;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-large {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.feature-card-large h3 {
    color: var(--gray-900);
    margin-bottom: 0;
}

.feature-card-large p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Feature Comparison */
.feature-comparison {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.feature-comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
}

.comparison-item.highlight {
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}

.comparison-item.highlight h4 {
    color: var(--white);
}

.comparison-item h4 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.comparison-item li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-item.highlight li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.comparison-item li:last-child {
    border-bottom: none;
}

/* Age Banner */
.age-banner {
    padding: 2rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-content h3 {
    color: var(--white) !important;
    margin-bottom: 0.5rem;
}

.warning-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
    background-color: var(--white);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.safety-content h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.safety-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.safety-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.safety-feature .feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border-radius: 8px;
    flex-shrink: 0;
}

.safety-feature h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.safety-feature p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.safety-card {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.safety-card h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.guidelines-list li:last-child {
    border-bottom: none;
}

/* Verified Section */
.verified-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

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

.verified-content h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.verified-content > p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.verification-step {
    text-align: center;
}

.verification-step .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.verification-step h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.verification-step p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.verification-benefits h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.benefit-icon {
    font-size: 1.25rem;
}

/* Reporting Section */
.reporting-section {
    padding: 80px 0;
    background-color: var(--white);
}

.reporting-section h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.reporting-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reporting-step h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.reporting-step p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.tips-section h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.tip-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.tip-card h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Process Section (How It Works) */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-detailed {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.step-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number-large {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-icon-large {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border-radius: 50%;
}

.step-content-detailed h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.step-content-detailed p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Algorithm Section */
.algorithm-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

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

.algorithm-content h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.algorithm-content > p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.factor-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.factor-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.factor-card h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.factor-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Success Stories */
.success-section {
    padding: 80px 0;
    background-color: var(--white);
}

.success-section h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.story-card {
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.story-avatar {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-content h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-style: italic;
}

.story-sport {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.faq-section h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.faq-item h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Culture Section (Careers) */
.culture-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.culture-content h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.culture-content > p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.value-card {
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.benefits-section h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.benefit-item-large {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.benefit-icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item-large h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.benefit-item-large p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Positions Section */
.positions-section {
    padding: 80px 0;
    background-color: var(--white);
}

.positions-section h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.position-card {
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-header h3 {
    color: var(--gray-900);
    margin-bottom: 0;
}

.position-type {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.position-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.position-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Application Process */
.application-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.application-section h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.process-step-career {
    text-align: center;
}

.step-number-career {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content-career h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-content-career p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.contact-form-container h2 {
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--gray-700);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #880101;
}

.contact-info h2 {
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border-radius: 8px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.social-contact h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--gray-50);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.6);
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1);
}

/* FAQ Quick Links */
.faq-quick {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.faq-quick h2 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

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

.faq-link-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.faq-link-card h4 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.faq-link-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: var(--primary-dark);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .process-step-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-careers {
        grid-template-columns: 1fr;
    }
}

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

.feature-card,
.step,
.feature-card-large,
.comparison-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2),
.feature-card-large:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3),
.feature-card-large:nth-child(3) {
    animation-delay: 0.4s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.4s;
}

/* Legal Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #660001 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
    text-align: center;
}

.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

.legal-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    color: var(--primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    text-align: left;
}

.legal-section h3 {
    color: var(--gray-800);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.legal-section ul li strong {
    color: var(--gray-800);
    font-weight: 600;
}

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

.value-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 1, 1, 0.1);
}

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

.value-item p {
    color: var(--gray-700);
    margin: 0;
    line-height: 1.6;
}

.contact-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--primary);
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--gray-700);
}

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

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .legal-content {
        padding: 2rem 0;
    }
    
    .legal-section {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* Data Sharing Table Styles */
.data-sharing-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.data-sharing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(136, 1, 1, 0.2);
    border: 5px solid #880101;
    outline: 3px solid #880101;
    outline-offset: 4px;
    position: relative;
}

.data-sharing-table table::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #880101;
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
}

.data-sharing-table th {
    background: var(--primary);
    color: #880101 !important;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.data-sharing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

.data-sharing-table tr:last-child td {
    border-bottom: none;
}

.data-sharing-table tr:hover {
    background: var(--gray-50);
}

/* Responsive table */
@media (max-width: 768px) {
    .data-sharing-table {
        margin: 1rem 0;
    }
    
    .data-sharing-table th,
    .data-sharing-table td {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .data-sharing-table th:first-child,
    .data-sharing-table td:first-child {
        min-width: 120px;
    }
}

/* Legal Page Headings - Red Color */
.legal-section h1,
.legal-section h2,
.legal-section h3 {
    color: #880101 !important;
}

/* Page Header H1 - Red Color */
.page-header h1 {
    color: #880101 !important;
}

/* Waitlist Page Styles */
.waitlist-section {
    padding: 4rem 0;
    background: var(--white);
}

.waitlist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.waitlist-info h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.waitlist-info p {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.waitlist-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waitlist-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-benefits .benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 1, 1, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.waitlist-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.waitlist-form h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.waitlist-form > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.waitlist-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
    font-weight: 500;
}

.waitlist-form .form-group input,
.waitlist-form .form-group select,
.waitlist-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.waitlist-form .form-group input:focus,
.waitlist-form .form-group select:focus,
.waitlist-form .form-group textarea:focus {
    outline: none;
    border-color: #880101;
    box-shadow: 0 0 0 3px rgba(136, 1, 1, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-700);
}

/* Regular Checkbox Styling - Smaller and Different Color */
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #880101;
    background: #FFFFFF;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 2s ease-out;
}



.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-content ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.success-content li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.success-content .btn {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .waitlist-form-container {
        padding: 1.5rem;
    }
    
    .success-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* All H2 & H3 Headings - Red Color */
h2,
.features-preview h2,
.content-text h2,
.feature-comparison h2,
.safety-content h2,
.verified-content h2,
.reporting-section h2,
.tips-section h2,
.algorithm-content h2,
.success-section h2,
.faq-section h2,
.culture-content h2,
.benefits-section h2,
.positions-section h2,
.application-section h2,
.contact-form-container h2,
.contact-info h2,
.faq-quick h2,
h3,
.feature-card h3,
.showscore-section h3,
.step-content-detailed h3,
.verification-benefits h3,
.safety-card h3,
.position-header h3,
.value-item h3,
.legal-section h3 {
    color: #880101 !important;
}

/* Force center all page header descriptions */
.page-header p {
    text-align: center !important;
    margin: 0 auto !important;
} 

/* Native Select Multiple Styling - macOS System Look */
select[multiple] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FFFFFF;
    color: #333;
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select[multiple]:focus {
    outline: none;
    border-color: #880101;
    box-shadow: 0 0 0 3px rgba(136, 1, 1, 0.1);
}

select[multiple] option {
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

select[multiple] option:hover {
    background-color: #f8f9fa;
}

select[multiple] option:checked {
    background-color: var(--primary);
    color: #333;
    font-weight: 500;
}

select[multiple] option:checked:hover {
    background-color: #6a0101;
    color: #333;
}

/* Form Help Text */
.form-help {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
} 

/* Custom Multiselect Styling - Click to Select/Deselect */
.custom-multiselect {
    position: relative;
    width: 100%;
}

.multiselect-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #FFFFFF;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 48px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.multiselect-display:hover {
    border-color: #ced4da;
}

.multiselect-display.active {
    border-color: #880101;
    box-shadow: 0 0 0 3px rgba(136, 1, 1, 0.1);
}

.placeholder {
    color: #999;
    font-size: 16px;
}

.placeholder.has-selections {
    color: #333;
    font-weight: 500;
}

.arrow {
    color: #666;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.multiselect-display.active .arrow {
    transform: rotate(180deg);
}

.multiselect-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.multiselect-dropdown.show {
    display: block;
}

.multiselect-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.multiselect-option:last-child {
    border-bottom: none;
}

.multiselect-option:hover {
    background-color: #f8f9fa;
}

.multiselect-option.selected {
    background-color: var(--primary);
    color: #333;
    font-weight: 500;
}

.multiselect-option .label {
    font-size: 16px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.multiselect-option.selected .label {
    color: #333;
    font-weight: 500;
} 

/* Responsive adjustments */
@media (max-width: 768px) {
    .multiselect-dropdown {
        max-height: 250px;
    }
    
    .multiselect-option {
        padding: 12px 16px;
    }
    
    .multiselect-display {
        padding: 12px 16px;
        min-height: 48px;
    }
} 

/* Custom Form Validation Styling */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #e9ecef;
}

.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
    border-color: #880101;
    box-shadow: 0 0 0 3px rgba(136, 1, 1, 0.1);
}

/* Custom validation message - only show after submit attempt */
.form-group .validation-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Show validation messages only when form has been submitted */
.form-submitted .form-group input:invalid + .validation-message,
.form-submitted .form-group select:invalid + .validation-message,
.form-submitted .form-group textarea:invalid + .validation-message {
    display: block;
}

/* Show red borders only after submit attempt */
.form-submitted .form-group input:invalid,
.form-submitted .form-group select:invalid,
.form-submitted .form-group textarea:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Required field indicator */
.form-group label.required::after {
    content: " *";
    color: #880101;
    font-weight: bold;
} 

/* Demo Disclaimer Styling */
.demo-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: center;
}

.demo-disclaimer p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    font-style: italic;
}

.demo-disclaimer strong {
    color: #880101;
} 

/* Typewriter Animation Styling */
.typewriter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 4rem;
    position: relative;
}

.typewriter-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    display: inline;
}

.cursor {
    font-size: 1.25rem;
    color: #880101;
    font-weight: bold;
    animation: blink 1s infinite;
    margin-left: 2px;
    display: inline;
    vertical-align: baseline;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero content styling updates */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #880101;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Update Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Update notification styling */
.update-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.update-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.update-text {
    flex: 1;
    font-weight: 500;
}

.update-progress {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Footer Styling */
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-section.main-brand {
    flex: 0 0 auto;
    min-width: 200px;
}

.footer-section.main-brand h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.footer-section.main-brand p {
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.footer-section.main-brand .social-links {
    margin-top: 0.5rem;
}

.footer-section.compact-links {
    flex: 0 0 auto;
    min-width: 150px;
    text-align: left;
}

.footer-section.compact-links h5 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
}

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

.footer-section.compact-links li {
    margin-bottom: 0.25rem;
}

.footer-section.compact-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-section.compact-links a:hover {
    color: var(--primary-color);
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-section.main-brand {
        text-align: center;
        min-width: auto;
    }
    
    .footer-section.compact-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section.compact-links {
        gap: 1rem;
    }
} 

 






 