/* ===== GLOBAL ===== */
body{
font-family:Arial, sans-serif;
background:#f5f7fa;
margin:0;
padding:0;
}

/* ===== HEADER ===== */
.header{
text-align:center;
padding:30px 15px;
}

.logo{
font-size:32px;
font-weight:bold;
color:#2e7d32;
}

/* ===== SEARCH ===== */
.search-box{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin-top:20px;
}

input{
width:100%;
max-width:400px;
padding:14px;
border-radius:30px;
border:1px solid #ddd;
font-size:16px;
}

button, select{
padding:12px 16px;
border:none;
border-radius:30px;
background:#2e7d32;
color:white;
cursor:pointer;
}

/* ===== RESULTS ===== */
.results{
max-width:800px;
margin:30px auto;
padding:0 15px;
}

.result-item{
background:#fff;
padding:15px;
border-radius:12px;
margin-bottom:15px;
box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.result-item a{
font-size:16px;
color:#1a0dab;
text-decoration:none;
font-weight:bold;
}

.result-item p{
font-size:14px;
color:#555;
margin-top:5px;
}

/* ===== MOBILE ===== */
@media(max-width:600px){
.logo{
font-size:26px;
}
}

/* ===== SEO CONTENT ===== */
.seo-content{
max-width:800px;
margin:50px auto;
padding:20px;
font-size:14px;
color:#444;
line-height:1.6;
background:#fff;
border-radius:12px;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.loading{
text-align:center;
padding:20px;
font-size:14px;
color:#666;
}

.spinner{
width:30px;
height:30px;
border:4px solid #ddd;
border-top:4px solid #2e7d32;
border-radius:50%;
animation:spin 1s linear infinite;
margin:10px auto;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}