.main-9UFOh3rEIfRO {
    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-9UFOh3rEIfRO {
    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-9UFOh3rEIfRO .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

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

.nav-9UFOh3rEIfRO a:hover {
    color: #43A047;
}

.hero-9UFOh3rEIfRO {
    background: linear-gradient(135deg, #43A047ee, #43A047bb);
    color: white;
    text-align: center;
    padding: 67vh 0 15vh;
    margin-top: 80px;
}

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

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

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

.content-9UFOh3rEIfRO {
    background: white;
}

.features-9UFOh3rEIfRO h2, .cta-9UFOh3rEIfRO h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #43A047;
}

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

.card-9UFOh3rEIfRO {
    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-9UFOh3rEIfRO:hover {
    transform: translateY(-10px);
}

.card-9UFOh3rEIfRO h3 {
    color: #43A047;
    margin-bottom: 15px;
}

.cta-9UFOh3rEIfRO {
    background: #43A04720;
    text-align: center;
    color: #333;
}

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

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

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

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

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