/* Race Organisers Page Specific Styles */

html {
    scroll-behavior: smooth;
}
        
        .organiser-hero {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 3rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            text-align: center;
        }

        .organiser-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .organiser-hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: inline-flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-cta .btn {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
        }

        .btn-white {
            background: white;
            color: var(--primary);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        .benefits-section {
            margin-bottom: 4rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .benefit-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .benefit-card p {
            color: var(--text-dark);
            line-height: 1.7;
        }

        .stats-section {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 3rem 2rem;
            margin-bottom: 4rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .how-it-works-section {
            margin-bottom: 4rem;
        }

        .steps-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .step-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: flex-start;
        }

        .step-number {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .step-content {
            flex: 1;
        }

        .step-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .step-content p {
            color: var(--text-dark);
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: var(--bg-white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: var(--secondary);
        }

        .feature-text {
            flex: 1;
        }

        .feature-text h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .testimonial-section {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 3rem 2rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
        }

        .testimonial-quote {
            font-size: 1.25rem;
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-author {
            text-align: center;
            font-weight: 600;
            color: var(--primary);
        }

        .faq-compact {
            margin-bottom: 4rem;
        }

        .faq-compact-item {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
        }

        .faq-compact-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .faq-compact-item p {
            color: var(--text-dark);
            line-height: 1.7;
        }

        .faq-compact-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .faq-compact-item a:hover {
            text-decoration: underline;
        }

        .final-cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            padding: 3rem 2rem;
            text-align: center;
            color: white;
        }

        .final-cta h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
            background: white;
            color: var(--primary);
        }

        .final-cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .organiser-hero h1 {
                font-size: 1.75rem;
            }

            .organiser-hero p {
                font-size: 1rem;
            }

            .hero-cta {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta .btn {
                width: 100%;
                justify-content: center;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .step-item {
                flex-direction: column;
                gap: 1rem;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-quote {
                font-size: 1.1rem;
            }

            .final-cta h2 {
                font-size: 1.5rem;
            }

            .final-cta p {
                font-size: 1rem;
            }
        }