/* ==========================
TaxAdvanceLoan.com
Master Stylesheet
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
line-height:1.7;
background:#f5f7fb;
color:#1f2937;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

a{
text-decoration:none;
color:#0b63ce;
}

img{
max-width:100%;
}

/* ==========================
Header
========================== */

header{
background:#ffffff;
border-bottom:1px solid #e5e7eb;
position:sticky;
top:0;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:1.8rem;
font-weight:700;
color:#111827;
}

.logo span{
color:#16a34a;
}

/* ==========================
Buttons
========================== */

.btn{
display:inline-block;
background:#16a34a;
color:#ffffff;
padding:14px 24px;
border-radius:8px;
font-weight:700;
margin-right:10px;
margin-top:10px;
transition:.3s;
}

.btn:hover{
background:#15803d;
}

.btn-dark{
background:#111827;
}

.btn-dark:hover{
background:#000;
}

/* ==========================
Hero
========================== */

.hero{
padding:80px 0;
background:linear-gradient(135deg,#ecfdf5,#f0f9ff);
}

.hero-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
align-items:center;
}

.hero h1{
font-size:3rem;
line-height:1.2;
margin-bottom:20px;
color:#111827;
}

.hero p{
font-size:1.1rem;
margin-bottom:20px;
}

.pill{
display:inline-block;
background:#dcfce7;
color:#166534;
padding:8px 16px;
border-radius:999px;
font-weight:700;
margin-bottom:20px;
}

/* ==========================
Sections
========================== */

.section{
padding:70px 0;
}

.section h2{
font-size:2rem;
margin-bottom:25px;
color:#111827;
}

.section p{
margin-bottom:18px;
}

/* ==========================
Cards
========================== */

.card{
background:#ffffff;
padding:30px;
border-radius:12px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
color:#111827;
}

.card ul{
padding-left:20px;
}

.card li{
margin-bottom:10px;
}

/* ==========================
Grid Layouts
========================== */

.grid-2{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* ==========================
CTA Section
========================== */

.cta{
text-align:center;
background:#ffffff;
padding:50px;
border-radius:15px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.cta h2{
margin-bottom:20px;
}

/* ==========================
Lists
========================== */

ul,
ol{
padding-left:25px;
margin-bottom:20px;
}

li{
margin-bottom:10px;
}

/* ==========================
Footer
========================== */

footer{
background:#111827;
color:#ffffff;
padding:50px 0;
text-align:center;
}

footer a{
color:#93c5fd;
}

footer p{
margin-bottom:15px;
}

/* ==========================
Tables
========================== */

table{
width:100%;
border-collapse:collapse;
margin:25px 0;
background:#ffffff;
}

th,
td{
padding:14px;
border:1px solid #e5e7eb;
text-align:left;
}

th{
background:#f3f4f6;
font-weight:700;
}

/* ==========================
Responsive
========================== */

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
}

.grid-2{
grid-template-columns:1fr;
}

.grid-3{
grid-template-columns:1fr;
}

.hero h1{
font-size:2.2rem;
}

.section h2{
font-size:1.7rem;
}

}

@media(max-width:768px){

.nav{
flex-direction:column;
gap:15px;
}

.hero{
padding:60px 0;
}

.hero h1{
font-size:2rem;
}

.container{
width:94%;
}

.btn{
display:block;
text-align:center;
margin-right:0;
}

}
