* {
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #ffffff;
}


header {
    padding: 20px 8%;
}


.logo {
    font-size: 24px;
    font-weight: 700;
}


section {
    padding: 60px 8%;
}


h1 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.15;
    margin-bottom: 20px;
}


h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
}


h3 {
    margin-top: 0;
}



.hero {

    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 80vh;

}


.hero-text {

    flex: 1;

}


.hero-text p {

    font-size: 20px;
    max-width: 550px;

}


.hero-image {

    flex: 1;
    text-align: center;

}


.hero-image img {

    width: 100%;
    max-width: 420px;
    border-radius: 20px;

}



.button {

    display: inline-block;
    margin-top: 25px;
    padding: 16px 32px;

    background: #c8102e;
    color: white;

    text-decoration: none;
    font-weight: 700;

    border-radius: 8px;

    transition: 0.2s;

}


.button:hover {

    opacity: 0.85;

}



small {

    display: block;
    margin-top: 15px;
    color: #666;

}




.cards,
.steps {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

}



.cards div,
.steps div,
.price,
.testimonial {

    padding: 30px;

    border-radius: 16px;

    background: #f7f7f7;

}



.testimonial {

    max-width: 700px;
    margin: 20px auto;

}



.offer {

    background: #fafafa;

}



.price {

    max-width: 400px;
    margin: 25px auto;
    text-align: center;

}


.price strong {

    font-size: 40px;
    display: block;
    margin: 15px;

}



footer {

    padding: 40px 8%;
    text-align: center;

    background: #111;
    color: white;

}



footer a {

    color: white;

}




@media(max-width: 768px) {


    section {

        padding: 40px 5%;

    }


    .hero {

        flex-direction: column;
        text-align: center;

    }


    .cards,
    .steps {

        grid-template-columns: 1fr;

    }


    h2 {

        font-size: 28px;

    }
