/* =========================
   GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

/* =========================
   BODY
========================= */

body{
font-family: 'Poppins', system-ui, -apple-system, sans-serif;
background:#f5f7fb;
color:#1f2937;
line-height:1.7;
font-size:16px;
}

/* =========================
   MAIN CONTAINER
========================= */

.container{
width:90%;
max-width:1100px;
margin:40px auto;
background:#ffffff;
padding:35px;
border-radius:14px;
box-shadow:0 8px 30px rgba(0,0,0,0.08);
transition:all .3s ease;
}

.container:hover{
box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

/* =========================
   TYPOGRAPHY
========================= */

h1{
font-size:32px;
font-weight:700;
color:#0f172a;
margin-bottom:20px;
border-bottom:4px solid #2563eb;
padding-bottom:10px;
}

h2{
font-size:26px;
font-weight:600;
color:#1e293b;
margin-top:35px;
margin-bottom:12px;
}

h3{
font-size:20px;
color:#334155;
margin-top:25px;
}

p{
margin:14px 0;
font-size:17px;
color:#374151;
}

/* =========================
   LINKS
========================= */

a{
color:#2563eb;
text-decoration:none;
transition:.25s;
}

a:hover{
color:#1d4ed8;
text-decoration:underline;
}

/* =========================
   IMAGES
========================= */

img{
max-width:100%;
height:auto;
border-radius:10px;
display:block;
margin:25px auto;
}

/* Featured Image */

.feature-image{
width:100%;
max-height:420px;
object-fit:cover;
}

/* =========================
   LISTS
========================= */

ul{
margin:20px 0;
padding-left:25px;
}

ul li{
margin-bottom:8px;
}

/* =========================
   TABLE
========================= */

table{
width:100%;
border-collapse:collapse;
margin:25px 0;
background:#ffffff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

th{
background:#2563eb;
color:white;
padding:12px;
text-align:left;
}

td{
border:1px solid #e5e7eb;
padding:10px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

.container{
width:94%;
padding:25px;
margin:25px auto;
}

h1{
font-size:26px;
}

h2{
font-size:22px;
}

p{
font-size:16px;
}

}