/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.blog-header{
    height: 420px;
background-image: url(../img/banner.jpg);
padding:80px 20px;
text-align:center;
}

.blog-header h1{
color:white;
font-size:58px;
font-weight:500;
}

/* MAIN SECTION */
.blog-container{
background:#f5f5f5;
padding:60px 10%;
}

/* HEADINGS */
.blog-container h2{
font-size:34px;
margin-bottom:15px;
color:#333;
}

/* DESCRIPTION TEXT */
.blog-desc{
color:#444;
font-size:18px;
margin-top:10px;
line-height:1.6;
}

/* GREEN LINKS */
.blog-link{
color:#40b66a;
font-size:18px;
text-decoration:none;
font-weight:600;
}

.blog-link:hover{
text-decoration:underline;
}

/* BLOG CARDS */
.blog-card{
background:white;
padding:25px;
border-radius:8px;
border:1px solid #ddd;
margin-top:20px;
transition:0.3s;
}

.blog-card:hover{
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* BLOG CARD TEXT */
.blog-card p{
margin-top:10px;
color:#555;
font-size:16px;
line-height:1.6;
}

/* DIVIDER */
.divider{
margin:30px 0;
border-top:1px solid #ccc;
}

/* BLOG BANNER */

/* .blog-banner{
background:linear-gradient(135deg,#1e73e8,#0057d9);
color:white;
padding:120px 20px;
text-align:center;
} */

/* .banner-content h1{
font-size:42px;
margin-bottom:15px;
}

.banner-content p{
font-size:18px;
opacity:0.9;
} */


.hero-banner{
    /* margin-top: 50px; */
background-image:url("../img/banner.jpg");
background-size:contain;
background-position:center;
height:500px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:white;
/* margin-top: 50px; */
}

.banner-overlay{
background:rgba(0,0,0,0);
width:100%;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.banner-overlay h1{
    color: white;
}

.hero-banner h1{
font-size:40px;
margin-bottom:10px;
}

.hero-banner p{
font-size:20px;
}

/* BLOG CONTENT */

.blog-content{
padding:60px 10%;
background:#f8f9fa;
}

.container{
max-width:1200px;
/* padding:40px 60px; */
/* margin-left:40px; */
}


.blog-content p{
font-size:18px;
line-height:1.8;
color:#444;
margin-bottom:20px;
}


.blog-content h2{
margin-top:40px;
margin-bottom:15px;
font-size:28px;
color:#222;
}


.blog-content h3{
margin-top:20px;
font-size:22px;
color:#333;
}

/* FAQ SECTION */

.faq-container{
max-width:900px;
margin:40px auto;
}

.faq-item{
border:1px solid #e5e5e5;
border-radius:8px;
margin-bottom:12px;
overflow:hidden;
background:#fff;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
transition:0.3s;
}

.faq-question{
width:100%;
padding:18px 20px;
font-size:17px;
font-weight:600;
background:#f9fafb;
border:none;
text-align:left;
cursor:pointer;
position:relative;
transition:0.3s;
}

.faq-question:hover{
background:#eef4ff;
}

.faq-question::after{
content:"+";
position:absolute;
right:20px;
font-size:22px;
transition:0.3s;
}

.faq-item.active .faq-question::after{
content:"−";
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.3s ease;
padding:0 20px;
}

.faq-answer p{
padding:15px 0;
color:#555;
line-height:1.7;
}