﻿body {
    margin: 0;
    font-family: Arial,sans-serif;
    background: #f8fafc;
}



.buyer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}





/* HERO */

.buyer-hero {
    text-align: center;
    padding: 80px 30px;
    border-radius: 25px;
    color: white;
    background: linear-gradient(135deg,#08574c 0%,#2fa88d 50%,#08574c 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}


    .buyer-hero h1 {
        font-size: 55px;
        margin-bottom: 20px;
    }


    .buyer-hero p {
        max-width: 800px;
        margin: auto;
        font-size: 20px;
        line-height: 1.7;
    }



.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: white;
    color: #08574c;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}





/* CARDS */


.intro-card,
.why-card {
    background: white;
    margin-top: 50px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}



    .intro-card h2,
    .why-card h2 {
        text-align: center;
        background: linear-gradient(135deg,#08574c,#2fa88d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 38px;
    }




    .intro-card p {
        color: #475569;
        line-height: 1.8;
        font-size: 18px;
    }





/* STEPS */


.steps {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}



.step-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .3s;
}


    .step-card:hover {
        transform: translateY(-8px);
    }



    .step-card span {
        font-size: 45px;
        font-weight: bold;
        background: linear-gradient(135deg,#08574c,#2fa88d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    .step-card h2 {
        color: #0f172a;
    }


    .step-card p {
        color: #475569;
        line-height: 1.7;
    }





/* ADVANTAGES */


.advantages {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}



    .advantages div {
        padding: 25px;
        border-left: 5px solid #2fa88d;
        background: #f8fafc;
        border-radius: 15px;
    }



    .advantages h3 {
        color: #08574c;
    }





/* CTA */


.buyer-cta {
    margin-top: 60px;
    text-align: center;
    padding: 60px 30px;
    border-radius: 25px;
    color: white;
    background: linear-gradient(135deg,#08574c,#2fa88d);
}



    .buyer-cta a {
        display: inline-block;
        margin-top: 25px;
        background: white;
        color: #08574c;
        padding: 15px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
    }





/* MOBILE */


@media(max-width:768px) {


    .buyer-hero h1 {
        font-size: 35px;
    }


    .steps {
        grid-template-columns: 1fr;
    }



    .advantages {
        grid-template-columns: 1fr;
    }



    .intro-card,
    .why-card {
        padding: 25px;
    }
}
