/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    line-height:1.7;
}

/* =========================
   VARIABLES
========================= */

:root{

    --primary:#0f62fe;

    --secondary:#111827;

    --accent:#ff6b00;

    --light:#f8fafc;

    --white:#ffffff;

    --text:#4b5563;

    --border:#e5e7eb;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:15px;

    --max-width:1200px;

}

/* =========================
   GLOBAL
========================= */

.container{

    width:90%;

    max-width:var(--max-width);

    margin:auto;

}

section{

    padding:90px 0;

}

h1,h2,h3{

    color:var(--secondary);

    margin-bottom:20px;

}

p{

    color:var(--text);

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* =========================
   BUTTON
========================= */

.btn{

    display:inline-block;

    padding:16px 35px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

    opacity:.95;

}

/* =========================
   SECTION TITLE
========================= */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.4rem;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

/* =========================
   CARDS
========================= */

.card{

    background:white;

    border-radius:var(--radius);

    padding:30px;

    box-shadow:var(--shadow);

}

/* =========================
   PLACEHOLDER HEIGHTS
========================= */

header{
    height:80px;
}

#hero{
    min-height:90vh;
}

#trusted{
    min-height:180px;
}

#about{
    min-height:500px;
}

#curriculum{
    min-height:600px;
}

#mentor{
    min-height:550px;
}

#bonuses{
    min-height:450px;
}

#testimonials{
    min-height:600px;
}

#pricing{
    min-height:550px;
}

#faq{
    min-height:600px;
}

#cta{
    min-height:450px;
}

footer{
    min-height:250px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

section{

padding:70px 0;

}

.section-title h2{

font-size:2rem;

}

.btn{

width:100%;

text-align:center;

}

}