.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    background: linear-gradient(135deg, #0292CC, #23b2ea);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero i {
    font-size: 70px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    background: #fff;
    color: #0292CC;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.hero-btn:hover {
    opacity: 0.9;
}

section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1e293b;
}

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

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    text-align: center;
}

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

.card i {
    font-size: 45px;
    color: #0292CC;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

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

.step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.step i {
    font-size: 50px;
    color: #0292CC;
    margin-bottom: 15px;
}

.stats {
    background: #1e293b;
    color: white;
    padding: 70px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat h2 {
    font-size: 42px;
    color: #0292CC;
}

.faq {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
}

.cta {
    background: linear-gradient(135deg, #0292CC, #23b2ea);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #fff;
    color: #0292CC;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
}

.seo-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.seo-box p {
    margin-bottom: 15px;
}


.bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 20px;
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 30px;
    }

}