/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    line-height:1.6;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   LINKS
========================= */

a{
    text-decoration:none;
    color:inherit;
}

/* =========================
   BUTTONS
========================= */

button{
    border:none;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
}

/* =========================
   SECTION SPACING
========================= */

section{
    padding:70px 8%;
}

/* =========================
   HEADINGS
========================= */

h1{
    font-size:3rem;
    font-weight:700;
}

h2{
    font-size:2rem;
    font-weight:600;
    margin-bottom:20px;
    text-align:center;
}

h3{
    font-size:1.2rem;
}

p{
    color:#475569;
}

/* =========================
   FORM INPUTS
========================= */

input,
select,
textarea{
    width:100%;
    padding:12px 15px;
    border:1px solid #cbd5e1;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#2563eb;
}

/* =========================
   CARDS
========================= */

.card{
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* =========================
   PRIMARY BUTTON
========================= */

.primary-btn{
    background:#2563eb;
    color:white;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:#1d4ed8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    h1{
        font-size:2rem;
    }

    h2{
        font-size:1.6rem;
    }

    section{
        padding:50px 5%;
    }
}