
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background-color: #0033A0; color: white; }
header { padding: 30px; text-align: center; background-color: #002477; }
header h1 { font-size: 3rem; }
header p { font-size: 1.2rem; margin-top: 10px; }
.hero { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px 20px; }
.hero img { max-width: 400px; border-radius: 12px; margin-bottom: 20px; }
.hero h2 { font-size: 2.5rem; margin-bottom: 15px; }
.hero p { max-width: 800px; text-align: center; line-height: 1.6; font-size: 1.1rem; }
.cta-btn { background-color: #FFD700; color: #0033A0; padding: 15px 30px; border: none; border-radius: 30px; font-size: 1.3rem; margin-top: 20px; cursor: pointer; transition: 0.3s; text-decoration: none; }
.cta-btn:hover { background-color: #FFB700; }
.features { padding: 50px 20px; background-color: white; color: #0033A0; }
.features h3 { text-align: center; font-size: 2.2rem; margin-bottom: 30px; }
.features ul { list-style: none; max-width: 900px; margin: 0 auto; }
.features li { background: #f1f1f1; padding: 20px; margin-bottom: 15px; border-radius: 10px; font-size: 1.1rem; }
.testimonials { padding: 50px 20px; text-align: center; }
.testimonials h3 { font-size: 2.2rem; margin-bottom: 30px; }
.testimonial { background-color: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 10px; margin-bottom: 20px; }
footer { background-color: #001C5A; text-align: center; padding: 20px; font-size: 0.9rem; }
