@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: Poppins;
}

.hero {
    height: 50vh;
    position: relative;
    top: -5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.hero h1 {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
}
.service-aside {
    position: sticky;
    top: 4rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-aside .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.service-aside .nav-link:hover {
    color: #0d6efd;
    background-color: #e9f2ff;
    border-left: 4px solid #0d6efd;
}

.service-aside .nav-link.active {
    font-weight: 600;
    color: #0d6efd;
    background-color: #e9f2ff;
    border-left: 4px solid #0d6efd;
}

.service-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.service-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.service-content ul {
    list-style: disc;
    margin-left: 1.5rem;
}
