.service-page {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1A4174 50%, #000 100%);
    padding: 80px 15px;
}

/* ===== WRAPPER FULL WIDTH ===== */
.service-wrapper {
    width: 100%;
}



.sidebar-box {
    position: sticky;
    top: 90px;
}

/* title */
.sidebar-title {
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* list */
.sidebar-list li {
    list-style: none;
    margin-bottom: 10px;
}

/* item */
.sidebar-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 14px;
    border-radius: 12px;

    text-decoration: none;
    font-size: 14px;

    color: #fff;
    background: rgba(255, 255, 255, 0.06);

    transition: 0.25s ease;
}

/* hover */
.sidebar-list a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(5px);
}

/* active */
.sidebar-list .active {
    color: #fff;
}

/* arrow */
.sidebar-list a i {
    font-size: 12px;
}


/* title */
.content-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* image */
.content-box img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.content-box img:hover {
    transform: scale(1.01);
}

/* text */
.content-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

/* share */
.share-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-box span {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

/* icons */
.share-box a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);
    color: #fff;

    transition: 0.25s ease;
}

/* hover */
.share-box a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px) {

    .content-title {
        font-size: 24px;
    }
}