body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f7fa;
    color: #222;
}

.hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

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

.hero p {
    font-size: 1.1rem;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn.big {
    font-size: 1.1rem;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

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

.how li {
    margin: 12px 0;
    font-size: 1.05rem;
}

.brands {
    text-align: center;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.brand-logos img {
    max-height: 60px;
    opacity: 0.85;
}

.note {
    font-size: 0.9rem;
    color: #666;
}

.cta {
    text-align: center;
}

footer {
    text-align: center;
    padding: 30px 10px;
    font-size: 0.85rem;
    color: #666;
}
.hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin: 0;
}

.hero-text p {
    font-size: 1.1rem;
    margin: 16px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }
}
