/* =========================
   GLOBAL STYLING
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI", Arial, sans-serif;
    background:#f4f7fb;
    color:#333;
    line-height:1.8;
    padding:20px;
}

/* MAIN CONTAINER */
.shed{
    max-width:950px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 6px 25px rgba(0,0,0,0.08);
}

/* =========================
   HEADINGS
========================= */

h1,h2,h3{
    font-family:"Poppins", sans-serif;
}

h1.shedding{
    text-align:center;
    color:#0056d6;
    font-size:2.5rem;
    margin-bottom:25px;
}

h2{
    color:#11823b;
    margin-top:35px;
    margin-bottom:10px;
    font-size:1.8rem;
}

p{
    margin-bottom:15px;
    font-size:1.05rem;
}

/* =========================
   HERO IMAGE
========================= */

.blog-hero{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:30px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* =========================
   TABLE OF CONTENTS
========================= */

.tableOfContents{
    background:#eef6ff;
    padding:22px;
    border-radius:16px;
    margin-bottom:35px;
}

.tableOfContents h3{
    color:#0056d6;
    margin-bottom:12px;
}

.tableOfContents a{
    display:block;
    text-decoration:none;
    color:#333;
    background:white;
    padding:12px 15px;
    margin:8px 0;
    border-radius:10px;
    transition:0.3s ease;
    font-weight:500;
}

.tableOfContents a:hover{
    background:#0056d6;
    color:white;
    transform:translateX(5px);
}

/* =========================
   BUTTONS
========================= */

.blog-btn{
    display:inline-block;
    text-decoration:none;
    background:#0f9d58;
    color:white;
    padding:12px 22px;
    border-radius:10px;
    margin:15px 0;
    font-weight:600;
    transition:0.3s ease;
}

.blog-btn:hover{
    background:#0b7d45;
    transform:translateY(-3px);
}

/* =========================
   LISTS
========================= */

ul{
    padding-left:25px;
    margin-top:10px;
}

li{
    margin-bottom:10px;
}

/* =========================
   SOCIAL MEDIA
========================= */

.connectWithUs{
    text-align:center;
    color:#0056d6;
}

.socialMedia{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin:30px 0;
    flex-wrap:wrap;
}

.socialMedia a{
    width:50px;
    height:50px;
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 3px 10px rgba(0,0,0,0.12);
    transition:0.3s ease;
    overflow:hidden;
}

.socialMedia a:hover{
    transform:translateY(-5px) scale(1.08);
}

.socialMedia img{
    width:34px;
    height:34px;
    object-fit:contain;
}

/* =========================
   BLOG CARD
========================= */

.relatedBlogs{
    margin-top:35px;
}

.blogCard{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.blogCard img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.blogCard h2{
    padding:18px 20px 0;
}

.blogCard p{
    padding:0 20px;
}

.blogCard strong{
    display:block;
    padding:0 20px 20px;
    color:#d62828;
}

/* =========================
   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;
}

/* =========================
   AUTHOR BOX
========================= */

.authorBox{
    margin-top:40px;
    background:#f8fbff;
    padding:20px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:18px;
}

.authorBox img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #0056d6;
}

.authorBox h3{
    color:#0056d6;
    margin-bottom:5px;
}

/* =========================
   RELATED TOPICS
========================= */

.related-topics{
    margin-top:40px;
    background:#eef6ff;
    padding:25px;
    border-radius:18px;
}

.related-topics h3{
    text-align:center;
    margin-bottom:18px;
    color:#ff6600;
}

.related-topics a{
    display:block;
    text-decoration:none;
    background:white;
    color:#333;
    padding:14px 16px;
    border-radius:10px;
    margin-bottom:12px;
    transition:0.3s ease;
    font-weight:500;
}

.related-topics a:hover{
    background:#0056d6;
    color:white;
    transform:translateX(5px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    body{
        padding:10px;
    }

    .shed{
        padding:22px;
    }

    h1.shedding{
        font-size:2rem;
    }

    h2{
        font-size:1.5rem;
    }

    .blog-hero{
        height:230px;
    }

    .blogCard img{
        height:180px;
    }

    .authorBox{
        flex-direction:column;
        text-align:center;
    }

    .socialMedia a{
        width:45px;
        height:45px;
    }

    .socialMedia img{
        width:20px;
        height:20px;
    }
}