/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body{
    font-family: 'Poppins', sans-serif;
    background: #f4f7fb;
    color: #222;
    line-height: 1.8;
}

/* HERO SECTION */
.hero{
    width: 95%;
    max-width: 1450px;

    margin: 30px auto;

    height: 420px;

    border-radius: 35px;

    background:
    linear-gradient(rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),
    url("tickDog.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* HERO TEXT */
.hero-text{
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-text h1{
    font-size: 4rem;
    font-weight: 700;

    margin-bottom: 15px;

    text-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.hero-text p{
    font-size: 1.2rem;
    max-width: 800px;

    margin: auto;

    opacity: 0.95;
}

/* BLOG CONTAINER */
.blog-container{
    width: 92%;
    max-width: 1100px;

    margin: 40px auto 70px;
}

/* BLOG CONTENT */
.blog-content{
    background: white;

    padding: 55px;

    border-radius: 30px;

    box-shadow: 0 10px 35px rgba(0,0,0,0.08);

    position: relative;
}

/* LEFT BORDER DESIGN */
.blog-content::before{
    content: "";

    position: absolute;

    top: 40px;
    left: 0;

    width: 8px;
    height: 120px;

    background: #ff6b35;

    border-radius: 0 10px 10px 0;
}

/* HEADINGS */
.blog-content h2{
    font-size: 2rem;
    color: #111827;

    margin-top: 35px;
    margin-bottom: 18px;

    font-weight: 700;

    position: relative;
}

.blog-content h2::after{
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    background: #ff6b35;

    margin-top: 10px;

    border-radius: 20px;
}

/* SUB HEADINGS */
.blog-content h3{
    font-size: 1.3rem;

    color: #ff6b35;

    margin-top: 28px;
    margin-bottom: 10px;

    font-weight: 600;
}

/* PARAGRAPHS */
.blog-content p{
    font-size: 1.05rem;

    color: #4b5563;

    margin-bottom: 18px;
}

/* LISTS */
.blog-content ul,
.blog-content ol{
    margin-left: 30px;
    margin-bottom: 25px;
}

.blog-content li{
    margin-bottom: 10px;

    color: #374151;

    font-size: 1.02rem;
}

/* HIGHLIGHT BOX */
.ending{
    margin-top: 45px;

    padding: 25px;

    background: linear-gradient(135deg, #ff6b35, #ff9f1c);

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(255,107,53,0.25);
}

.ending p{
    color: white;

    font-size: 1.1rem;

    font-weight: 500;

    margin: 0;
}

/* HOVER EFFECT */
.blog-content:hover{
    transform: translateY(-4px);

    transition: 0.4s ease;
}

/* RESPONSIVE DESIGN */
@media(max-width: 900px){

    .hero{
        height: 320px;
    }

    .hero-text h1{
        font-size: 2.8rem;
    }

    .hero-text p{
        font-size: 1rem;
    }

    .blog-content{
        padding: 35px;
    }
}

@media(max-width: 600px){

    .hero{
        height: 260px;

        border-radius: 22px;
    }

    .hero-text h1{
        font-size: 2rem;
    }

    .hero-text p{
        font-size: 0.95rem;
    }

    .blog-content{
        padding: 25px;
        border-radius: 22px;
    }

    .blog-content h2{
        font-size: 1.5rem;
    }

    .blog-content p,
    .blog-content li{
        font-size: 0.96rem;
    }
}

.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;
}