*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Laila',serif;
}

body{
background:#f5f7fa;
color:#333;
line-height:1.6;
}

.hero{
text-align:center;
padding:80px 20px;
background:white;
}

.hero h1{
font-size:48px;
color:#0b1533;
margin-bottom:20px;
}

.hero p{
font-size:20px;
color:#555;
margin-bottom:30px;
}

.hero-tags{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.hero-tags span{
background:#2563eb;
color:white;
padding:12px 20px;
border-radius:30px;
font-size:16px;
}

footer{
background:#07112b;
color:white;
text-align:center;
padding:50px 20px;
border-top:2px solid rgba(255,255,255,0.20);
}

.footer-links{
margin-bottom:20px;
}

.footer-links a{
color:white;
text-decoration:none;
margin:0 15px;
font-size:18px;
font-weight:500;
}

.footer-links a:hover{
color:#60a5fa;
}

.search-section{
background:white;
padding:60px 20px;
text-align:center;
}

.search-section h2{
margin-bottom:25px;
color:#0B1533;
}

.search-section input{
width:80%;
max-width:700px;
padding:18px;
border-radius:15px;
border:1px solid #ddd;
font-size:18px;
}

.categories{
padding:70px 8%;
}

.categories h2{
text-align:center;
margin-bottom:40px;
color:#0B1533;
}

.cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
max-width:1200px;
margin:auto;
}

.card{
background:white;
padding:40px;
border-radius:25px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);

min-height:220px;

display:flex;
flex-direction:column;

transition:0.3s;

text-decoration:none;
color:inherit;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#0B1533;
}

.trending{
padding:70px 8%;
background:white;
}

.trending h2{
text-align:center;
margin-bottom:40px;
color:#0B1533;
}
.trust{
padding:70px 8%;
background:white;
}

.trust h2{
text-align:center;
margin-bottom:40px;
color:#0B1533;
}

.starter-packs{
padding:70px 8%;
background:#f5f7fa;
}

.starter-packs h2{
text-align:center;
margin-bottom:40px;
color:#0B1533;
}

@media(max-width:768px){

.cards{
grid-template-columns:1fr;
}

}

.amazon-btn{

display:inline-block;

margin-top:20px;

padding:15px 30px;

background:#FF9900;

color:white;

text-decoration:none;

font-weight:600;

font-size:18px;

border-radius:15px;

box-shadow:0 5px 15px rgba(0,0,0,0.15);

transition:all 0.3s ease;

}

.amazon-btn:hover{

background:#E68A00;

transform:translateY(-5px);

box-shadow:0 10px 25px rgba(0,0,0,0.25);

}


.card,
.card:hover,
.card:visited{
text-decoration:none;
color:inherit;
}

.card h3,
.card p,
.card strong{
color:#0B1533;
text-decoration:none;
}
