* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.services{
    margin-bottom: 50px;
}

.services .banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url("/images/new/services.jpg"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Dark overlay for banner */
.services .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgb(16 16 16 / 80%),
        rgb(65 64 59 / 80%)
    );
    z-index: 1;
}

.services .banner h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services .banner .breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.services .banner .breadcrumb a {
    color: #cbd5e0;
    text-decoration: none;
}

.services .banner .breadcrumb span {
    color: #e2e8f0;
}

.services .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 40px;
}

.services .left {
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.services .left .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a365d;
}

.services .left .menu {
    list-style: none;
}

.services .left .menu-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    transition: color 0.3s;
}

.services .left .menu-item a:hover {
    color: #147bb2;
}

.services .right {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.services .right .section-title {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 30px;
}

.services .right .content-block {
    margin-bottom: 30px;
}

/* .services .right .content-block h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 15px;
} */

.services .right .content-block {
    color: #4a5568;
    line-height: 1.6;
}

.services .right .content-block h1,
.services .right .content-block h2,
.services .right .content-block h3,
.services .right .content-block h4,
.services .right .content-block h5,
.services .right .content-block h6 {
    font-size: 25px;
    /* margin-bottom: 15px; */
    color: #48494b;
}

.services .right ol,
.services .right ul {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .services .content {
        flex-direction: column;
    }

    .services .left {
        width: 100%;
        order: 2;
    }
}

@media (max-width: 360px) {
    .services .content {
        padding: 40px 10px;
    }

    .services .right {
        padding: 30px 20px;
    }
}
