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

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

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

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

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

.nav-pHpRthjU74Tl a:hover {
    color: #F4511E;
}

.hero-pHpRthjU74Tl {
    background: linear-gradient(135deg, #F4511Eee, #F4511Ebb);
    color: white;
    text-align: center;
    padding: 66vh 0 15vh;
    margin-top: 80px;
}

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

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

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

.content-pHpRthjU74Tl {
    background: white;
}

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

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

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

.card-pHpRthjU74Tl h3 {
    color: #F4511E;
    margin-bottom: 15px;
}

.cta-pHpRthjU74Tl {
    background: #F4511E20;
    text-align: center;
    color: #333;
}

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

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

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

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

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