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

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#ffffff;
color:#111827;
line-height:1.6;
overflow-x:hidden;
}

/* ===============================
CONTAINER
================================*/

.container{
width:92%;
max-width:1200px;
margin:auto;
}

/* ===============================
SECTION SPACING
================================*/

.section{
padding:70px 0;
}

.section-sm{
padding:50px 0;
}

.section-lg{
padding:100px 0;
}

/* ===============================
TYPOGRAPHY
================================*/

h1{
font-size:52px;
font-weight:700;
line-height:1.2;
}

h2{
font-size:40px;
font-weight:700;
}

h3{
font-size:22px;
font-weight:600;
}

p{
font-size:16px;
color:#6b7280;
}

/* ===============================
BUTTONS
================================*/

.btn-primary{
background:#2563eb;
color:white;
padding:14px 32px;
border-radius:8px;
border:none;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
background:#1d4ed8;
}

.btn-outline{
border:2px solid #2563eb;
color:#2563eb;
padding:12px 28px;
border-radius:8px;
background:transparent;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.btn-outline:hover{
background:#2563eb;
color:white;
}

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

.card{
background:white;
border-radius:14px;
border:1px solid #e5e7eb;
padding:30px;
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.06);
}

/* ===============================
IMAGES
================================*/

img{
max-width:100%;
height:auto;
display:block;
}

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

/* TABLET */

@media(max-width:992px){

h1{font-size:38px;}
h2{font-size:30px;}

.section{
padding:60px 0;
}

}

/* MOBILE */

@media(max-width:600px){

h1{font-size:30px;}
h2{font-size:26px;}

.section{
padding:50px 0;
}

}