
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #E50914;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 1px solid #E50914;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #E50914;
    color: #ffffff;
}

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #E50914;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c40812;
}

/* Sections */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section-dark {
    background-color: #1a1a1a;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.grid-item {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.grid-item h3 {
    font-size: 1.5em;
    color: #E50914;
    margin-bottom: 15px;
}

/* Partner Section */
.partner-section {
    background-color: #000;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logos img {
    max-height: 60px;
    filter: grayscale(100%) brightness(3);
    transition: filter 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0%) brightness(1);
}

/* How It Works */
.step-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.step {
    max-width: 300px;
}

.step-number {
    font-size: 3em;
    font-weight: bold;
    color: #E50914;
    line-height: 1;
}

.step h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

/* Final CTA */
.final-cta {
    background-color: #E50914;
}

.final-cta h2 {
    color: #ffffff;
}

.final-cta .cta-button {
    background-color: #ffffff;
    color: #E50914;
}

.final-cta .cta-button:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 0.9em;
}

footer a {
    color: #E50914;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}




/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .section h2 {
        font-size: 2em;
    }

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

