.main-F13tqOFfVezA {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fc;
    color: #333;
    font-size: 17px;
    line-height: 1.7;
}

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

.nav-F13tqOFfVezA {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-F13tqOFfVezA .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-F13tqOFfVezA ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-F13tqOFfVezA a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-F13tqOFfVezA a:hover {
    color: #FFB300;
}

.hero-F13tqOFfVezA {
    background: linear-gradient(135deg, #FFB300ee, #FFB300bb);
    color: white;
    text-align: center;
    padding: 73vh 0 15vh;
    margin-top: 80px;
}

.hero-F13tqOFfVezA h1 {
    font-size: 4.5rem;
    margin: 0 0 20px;
}

.hero-F13tqOFfVezA p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.content-F13tqOFfVezA, .features-F13tqOFfVezA, .cta-F13tqOFfVezA {
    padding: 100px 0;
}

.content-F13tqOFfVezA {
    background: white;
}

.features-F13tqOFfVezA h2, .cta-F13tqOFfVezA h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #FFB300;
}

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

.card-F13tqOFfVezA {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.card-F13tqOFfVezA:hover {
    transform: translateY(-10px);
}

.card-F13tqOFfVezA h3 {
    color: #FFB300;
    margin-bottom: 15px;
}

.cta-F13tqOFfVezA {
    background: #FFB30020;
    text-align: center;
    color: #333;
}

.btn-F13tqOFfVezA {
    background: #FFB300;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-F13tqOFfVezA:hover {
    background: #333;
    transform: scale(1.05);
}

.btn-F13tqOFfVezA.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.footer-F13tqOFfVezA {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-F13tqOFfVezA h1 { font-size: 3rem; }
    .hero-F13tqOFfVezA p { font-size: 1.2rem; }
    .nav-F13tqOFfVezA ul { flex-direction: column; gap: 15px; }
}