body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header.hero {
    background: linear-gradient(135deg, #00aeef, #ec008c);
    color: white;
    padding: 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.tagline {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

._btn {
    background-color: #fff200;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

._btn:hover {
    background-color: #ec008c;
    color: white;
}

section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #00aeef;
    text-align: center;
    margin-bottom: 2rem;
}

.highlight {
    background: #fff;
    border-left: 6px solid #ec008c;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step {
    flex: 1 1 200px;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.step:hover {
    transform: scale(1.03);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ec008c;
}

.step h3 {
    margin: 0.5rem 0;
    color: #00aeef;
}

.why-choose-us .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.feature:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #00aeef;
    margin-bottom: 0.5rem;
}

.cta {
    background: #00aeef;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin: 2rem auto;
}

.cta h2 {
    color: white !important; 
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta a {
    background: white;
    color: #00aeef;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta a:hover {
    background: #ec008c;
    color: white;
}

.testimonials blockquote {
    background: #fff;
    padding: 1.5rem;
    border-left: 5px solid #00aeef;
    font-style: italic;
    border-radius: 6px;
    margin: 1rem 0;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        max-width: 150px;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
    }
}