/* ---------- RESET ---------- */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* Global links */
a {
  color: #1e88e5;
  text-decoration: none;
}

a:hover {
  color: #1565c0;
  text-decoration: underline;
}

/* Keep navbar white */
.navbar a {
  color: #fff;
}

body{
background:#f8f9f8;
color:#333;
line-height:1.7;
}

/* ---------- HEADER ---------- */

header{
background:#2e7d32;
color:#fff;
padding:1rem 0;
}

.navbar{
max-width:1100px;
margin:auto;
padding:0 1rem;
display:flex;
justify-content:space-between;
align-items:center;
}

.navbar a{
color:#fff;
text-decoration:none;
font-weight:bold;
}

.nav-links{
display:flex;
gap:1rem;
}

/* ---------- HERO ---------- */

.hero{
	color:#111;
text-align:center;
padding:4rem 1rem;
}

.hero h1{
	color:#2e7d32;
font-size:2.4rem;
margin-bottom:1rem;
}

.hero p{
max-width:1000px;
margin:auto;
font-size:1.1rem;
}

/* ---------- CONTAINER ---------- */

.container{
max-width:1100px;
margin:auto;
padding:2rem 1rem;
}

.container h2{
	text-align:center;
	margin-bottom:1.5rem;
	color:#2e7d32;
}

/* ---------- GRID ---------- */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:1.5rem;
}

.card{
background:#fff;
padding:1.5rem;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
text-align:center;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:6px;
margin-bottom:1rem;
}

.card h3{
color:#2e7d32;
margin-bottom:0.5rem;
}

/* ---------- BLOG ---------- */

.blog-post{
background:#fff;
border-radius:8px;
margin-bottom:2rem;
box-shadow:0 2px 8px rgba(0,0,0,0.07);
overflow:hidden;
}

.blog-post img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:1.5rem;
}

.blog-content h3{
color:#2e7d32;
margin-bottom:0.5rem;
}

.read-more{
display:inline-block;
margin-top:0.5rem;
color:#2e7d32;
font-weight:bold;
text-decoration:none;
}

/* ---------- FOOTER ---------- */

footer{
background:#1b5e20;
color:#fff;
text-align:center;
padding:1rem;
margin-top:2rem;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:700px){

.hero h1{
font-size:1.8rem;
}

}


/* ---------- FAQ SECTION ---------- */

.faq-section{
background:#ffffff;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.06);
margin-top:1rem;
}

/* FAQ container */

.faq{
max-width:800px;
margin:auto;
}

/* FAQ Question */

.faq-question{
font-size:1.1rem;
color:#2e7d32;
margin-top:1.5rem;
margin-bottom:0.4rem;
font-weight:bold;
}

/* FAQ Answer */

.faq-answer{
color:#444;
font-size:0.98rem;
margin-bottom:0.5rem;
padding-left:0.2rem;
}

/* spacing between FAQ blocks */

.faq-question:not(:first-child){
border-top:1px solid #e6e6e6;
padding-top:1rem;
}


/* ---------- GOOGLE SEARCH ---------- */

.gcse-search{
max-width:500px;
margin:1rem auto;
}

/* -------- BREADCRUMB -------- */

.breadcrumb{
font-size:0.9rem;
margin-bottom:1.2rem;
color:#666;
line-height:1.4;
}

.breadcrumb a{
color:#2e7d32;
text-decoration:none;
font-weight:500;
}

.breadcrumb a:hover{
text-decoration:underline;
}

.breadcrumb span{
color:#333;
font-weight:500;
}

/* Mobile */
@media (max-width:768px){

.breadcrumb{
font-size:0.85rem;
margin-bottom:1rem;
}

}

/* Footer Links */

.footer-links{
margin-bottom:0.6rem;
display:flex;
justify-content:center;
gap:1rem;
flex-wrap:wrap;
}

.footer-links a{
color:#c8e6c9;
text-decoration:none;
font-size:0.95rem;
}

.footer-links a:hover{
text-decoration:underline;
color:#ffffff;
}