
        :root {
            --f1-red: #ed1e26;
            --dark-bg: #15151e;
            --light-gray: #f5f5f5;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        /* Navigation */
        .navbar {
            background: black;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 45px;
            width: auto;
            max-width: 250px;
        }
        
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--f1-red) !important;
        }
        
.hero {
    background-color: black;
    background-image: url('https://www.formel1biljetter.se/img/topimg4.jpg');
    background-size: 1300px;
    background-position: 65% center; /* Move right - try 60%, 70%, 80% */
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 0 4rem;
    text-align: left;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.85;
}

/* Quick Search Bar - Left Aligned */
.quick-search {
    background: white;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 0 2rem 0; /* Changed from margin: 0 auto 2rem */
}

/* Trust Indicators - Left Aligned */
.trust-indicators {
    display: flex;
    justify-content: flex-start; /* Changed from center */
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
        
        .quick-search input {
            border: none;
            outline: none;
            padding: 0.75rem 1rem;
            flex: 1;
            font-size: 1rem;
        }
        
        .quick-search button {
            background: var(--f1-red);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        
        .quick-search button:hover {
            background: #c41920;
        }
        
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
        }
        
        .trust-item-icon {
            font-size: 1.5rem;
            color: var(--f1-red);
        }
        
        /* Popular Races Section */
        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark-bg);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }
        
        /* Race Cards Grid */
        .race-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .race-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 350px;
            background: #333;
        }
        
        .race-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        
        .race-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.6);
            transition: filter 0.3s ease;
        }
        
        .race-card:hover .race-card-bg {
            filter: brightness(0.4);
        }
        
        .race-card-content {
            position: relative;
            z-index: 1;
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: white;
        }
        
        .race-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .race-flag {
            width: 40px;
            height: 30px;
            border-radius: 4px;
            object-fit: cover;
        }
        
        .race-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            margin: 0;
        }
        
        .race-date {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }
        
        .race-location {
            font-size: 0.9rem;
            opacity: 0.85;
        }
        
        .race-price-tag {
            background: rgba(237, 30, 38, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            display: inline-block;
            font-weight: 600;
        }
  
  .race-card-content > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.btn-view-race {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-view-race:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-2px);
}



        /* How It Works Section */
        .how-it-works {
            background: var(--light-gray);
            padding: 5rem 0;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--f1-red) 0%, #c41920 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            font-family: 'Oswald', sans-serif;
        }
        
        .step-card h3 {
            font-family: 'Oswald', sans-serif;
            color: var(--dark-bg);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        .step-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Why Choose Us Section */
        .why-choose {
            padding: 5rem 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-card {
            text-align: center;
            padding: 2rem;
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: var(--f1-red);
            margin-bottom: 1rem;
        }
        
        .benefit-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
        }
        
        .benefit-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Package Types Section */
        .package-types {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a3e 100%);
            color: white;
            padding: 5rem 0;
        }
        
        .package-types .section-title {
            color: white;
        }
        
        .package-types .section-subtitle {
            color: rgba(255,255,255,0.8);
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .package-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .package-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-5px);
        }
        
        .package-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: var(--f1-red);
            margin-bottom: 1.5rem;
        }
        
        .package-card ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        
        .package-card li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .package-card li:before {
            content: "✓";
            color: var(--f1-red);
            font-weight: bold;
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }
        
        .package-best-for {
            background: rgba(237, 30, 38, 0.15);
            border-left: 3px solid var(--f1-red);
            padding: 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
        }
        
        /* Partners Section */
        .partners {
            padding: 4rem 0;
            background: var(--light-gray);
        }
        
        .partner-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 2rem;
        }
        
        .partner-grid img {
            max-width: 140px;
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        
        .partner-grid img:hover {
            filter: grayscale(0%);
        }
        
        /* SEO Content Section */
        .seo-content {
            padding: 5rem 0;
            background: white;
        }
        
        .seo-content h2 {
            font-family: 'Oswald', sans-serif;
            color: var(--f1-red);
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .seo-content h3 {
            font-family: 'Oswald', sans-serif;
            color: var(--dark-bg);
            font-size: 1.5rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .seo-content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #444;
        }
        
        .seo-content ul {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .seo-content strong {
            color: var(--dark-bg);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--f1-red) 0%, #c41920 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .btn-cta-large {
            background: white;
            color: var(--f1-red);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-large:hover {
            background: var(--dark-bg);
            color: white;
            transform: scale(1.05);
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--light-gray);
            padding: 5rem 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-bg);
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f8f8f8;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--f1-red);
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
        }
        
        .faq-answer.active {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }
        
        .faq-answer p {
            margin: 0;
            color: #666;
            line-height: 1.6;
        }
        
        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .language-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 2rem;
        }
        
        .language-links a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .language-links a:hover {
            color: var(--f1-red);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }
            
            .race-grid {
                grid-template-columns: 1fr;
            }
            
            .steps-grid {
                grid-template-columns: 1fr;
            }
            
            .quick-search {
                flex-direction: column;
                border-radius: 12px;
                padding: 1rem;
            }
            
            .quick-search button {
                width: 100%;
                margin-top: 0.5rem;
            }
        }


        /* Section Titles - Left Aligned */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: left; /* Changed from center */
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: left; /* Changed from center */
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* For dark sections */
.package-types .section-title {
    color: white;
    text-align: left;
}

.package-types .section-subtitle {
    color: rgba(255,255,255,0.8);
    text-align: left;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--f1-red) 0%, #c41920 100%);
    color: white;
    padding: 4rem 0;
    text-align: left; /* Changed from center */
}

.cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}




/* FAQ Section - Fast Performance */
.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-bg);
    transition: background 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--f1-red);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}


        :root {
            --f1-red: #ed1e26;
            --dark-bg: #15151e;
            --light-gray: #f5f5f5;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background: #fff;
        }
        
        /* Header Section */
        .intro-header {
            background: #fff;
            padding: 3rem 0 2rem;
        }
        
        .intro-message h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
        }
        
        .intro-message h1 .redcolor {
            color: var(--f1-red);
        }
        
        .raceimg {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }
        
        .intro-message p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        /* Price Comparison Section */
        .price-comparison-section {
            padding: 3rem 0;
            background: white;
        }
        
        .comparison-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--dark-bg);
            margin-bottom: 2rem;
            margin-top: 3rem;
        }
        
        .comparison-title:first-child {
            margin-top: 0;
        }
        
        /* Price Card */
        .price-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            display: grid;
            grid-template-columns: 180px 1fr 140px auto;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            border-color: var(--f1-red);
            box-shadow: 0 4px 15px rgba(237, 30, 38, 0.1);
            transform: translateY(-2px);
        }
        
        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        
        .partner-logo img {
            max-width: 150px;
            max-height: 50px;
            object-fit: contain;
            filter: grayscale(0%);
        }
        
        .price-info {
            display: contents;
        }
        
        .price-label {
            color: #333;
            font-size: 1rem;
        }
        
        .price-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--f1-red);
            white-space: nowrap;
            text-align: right;
        }
        
        .btn-read-more {
            background: var(--f1-red);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .btn-read-more:hover {
            background: #c41920;
            color: white;
            transform: translateX(5px);
        }
        
        /* Inquiry Card (for price on request) */
        .price-card.inquiry .price-label {
            font-style: italic;
        }
        
        .price-card.inquiry .btn-read-more {
            background: #333;
        }
        
        .price-card.inquiry .btn-read-more:hover {
            background: #000;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .price-card {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.5rem;
            }
            
            .partner-logo {
                justify-content: center;
                padding-bottom: 1rem;
                border-bottom: 1px solid #eee;
            }
            
            .price-info {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .price-amount {
                text-align: center;
            }
            
            .btn-read-more {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .intro-message h1 {
                font-size: 2rem;
            }
            
            .price-amount {
                font-size: 1.5rem;
            }
            
            .partner-logo img {
                max-width: 140px;
            }
        }
