﻿.hero {
    background: linear-gradient(135deg,#210645,#442371);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 0 0 30px 30px;
}

    .hero h1 {
        font-weight: bold;
        margin-bottom: 18px;
    }

    .hero p {
        max-width: 850px;
        margin: auto;
        line-height: 2;
        opacity: .95;
    }

.container-page {
    max-width: 1150px;
    margin: auto;
    padding: 60px 15px;
}

.section-title {
    text-align: center;
    color: #210645;
    margin-bottom: 40px;
    font-weight: bold;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.card-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    transition: .3s;
}

    .card-box:hover {
        transform: translateY(-6px);
    }

    .card-box i {
        font-size: 45px;
        color: #372967;
        margin-bottom: 18px;
    }

    .card-box h4 {
        color: #210645;
        margin-bottom: 15px;
    }

    .card-box p {
        color: #666;
        line-height: 1.9;
    }

.steps {
    margin-top: 70px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
}

.step-number {
    width: 45px;
    height: 45px;
    background: #210645;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h5 {
    color: #210645;
    margin-bottom: 10px;
}

.cta {
    margin-top: 70px;
    background: #210645;
    color: #fff;
    border-radius: 25px;
    text-align: center;
    padding: 55px 20px;
}

    .cta h2 {
        margin-bottom: 15px;
    }

    .cta p {
        max-width: 700px;
        margin: auto;
        line-height: 2;
        opacity: .9;
    }

    .cta a {
        display: inline-block;
        margin-top: 25px;
        background: #fff;
        color: #210645;
        text-decoration: none;
        padding: 14px 35px;
        border-radius: 30px;
        font-weight: bold;
    }
