.sitemap-title {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    text-align: center;
}

.tree,
.tree ul {
    list-style: none;
    margin: 0;
    padding-left: 25px;
    position: relative;
    font-size: 18px;
}

.tree ul {
    margin-top: 10px;
}

.tree:before {
    content: '';
    display: block;
    width: 2px;
    background: #ddd;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    animation: growLine 1.5s ease;
}

.tree li {
    margin: 12px 0;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSlideUp 0.5s forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

.tree li:before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background: #ddd;
    position: absolute;
    top: 12px;
    left: 0;
}

.tree li a,
.tree li span {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.tree li a:hover {
    color: #c0392b;
    transform: translateX(5px);
}

.tree li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: 0.3s;
}

.tree li a:hover::after {
    width: 100%;
}

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growLine {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

@media (max-width: 600px) {
    .sitemap-title {
        font-size: 26px;
    }
    .tree,
    .tree ul {
        font-size: 16px;
        padding-left: 15px;
    }
}

/* Banner Image Start */
.page-title .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(banner/sitemap.jpg) !important;
}

/* CSS for Mobile View (active on screens up to 767px wide) */
@media (max-width: 767px) {
    .page-title .bg-layer {
        background-image: url(banner/sitemap-m.jpg) !important;
        background-position: center;
        background-size: cover;
    }
}
/* Banner Image End */
