/* Blog Container */
.blog-container{
    width: 95%;
    max-width: 1100px;

    margin: 40px auto;

    background: #ffffff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Top Image */
.blog-container img{
    width: 100%;
    height: 420px;

    object-fit: cover;

    display: block;
}

/* Content Area */
.blog-content{
    padding: 40px;
}

/* Main Heading */
.blog-content h1{
    font-size: 3rem;

    color: #e63946;

    margin-bottom: 20px;

    text-align: center;
}

/* Intro Box */
.intro{
    background: #fff5f5;

    padding: 22px;

    border-left: 6px solid #e63946;

    border-radius: 15px;

    font-size: 1.1rem;

    margin-bottom: 30px;
}

/* Headings */
.blog-content h2{
    margin-top: 35px;
    margin-bottom: 15px;

    color: #1d3557;

    font-size: 2rem;

    position: relative;
}

/* Stylish Underline */
.blog-content h2::after{
    content: "";

    width: 80px;
    height: 4px;

    background: #e63946;

    position: absolute;

    left: 0;
    bottom: -8px;

    border-radius: 10px;
}

/* Paragraphs */
.blog-content p{
    font-size: 1.05rem;

    line-height: 1.9;

    color: #444;

    margin-bottom: 18px;
}

/* Lists */
.blog-content ul{
    padding-left: 25px;

    margin-bottom: 25px;
}

.blog-content ul li{
    margin-bottom: 12px;

    font-size: 1.05rem;

    color: #333;
}

/* Ending Text */
.ending{
    text-align: center;

    font-size: 1.2rem;

    font-weight: 600;

    margin-top: 40px;

    color: #e63946;
}

/* Hover Effect */
.blog-container:hover{
    transform: translateY(-5px);

    transition: 0.3s ease;
}

/* Responsive */
@media(max-width: 768px){

    .blog-container img{
        height: 260px;
    }

    .blog-content{
        padding: 25px;
    }

    .blog-content h1{
        font-size: 2.2rem;
    }

    .blog-content h2{
        font-size: 1.5rem;
    }
}

@media(max-width: 480px){

    .blog-container img{
        height: 220px;
    }

    .blog-content{
        padding: 18px;
    }

    .blog-content h1{
        font-size: 1.8rem;
    }

    .blog-content h2{
        font-size: 1.3rem;
    }

    .blog-content p,
    .blog-content ul li{
        font-size: 0.95rem;
    }
}
.related-topics{
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-topics h3{
    font-size: 32px;
    color: #ff6b00;
    margin-bottom: 10px;
    text-align: center;
}

.related-topics a{
    text-decoration: none;
    background: #fff4ec;
    padding: 16px 20px;
    border-radius: 14px;
    color: #222;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
    border-left: 6px solid #ff6b00;
}

.related-topics a:hover{
    background: #ff6b00;
    color: white;
    transform: translateX(8px);
}

/* =========================
   FAQ SECTION
========================= */

.faq{
    margin-top:20px;
}

.faq details{
    background:#fafafa;
    padding:16px;
    border-radius:14px;
    margin-bottom:15px;
    border:1px solid #e5e5e5;
}

.faq summary{
    cursor:pointer;
    color:#0056d6;
    font-weight:600;
}

.faq p{
    margin-top:12px;
}