.services-container {
    display: flex;
    flex: 1;
}

.column {
    padding: 20px;
    overflow-y: auto;
}

.column1 {
    width: 33%;
    background-color: #f8f8f8;
    border-right: 1px solid #ddd;
}

.column2 {
    width: 67%;
    display: none;
}

.column2 h2 {
    margin-bottom: 1rem;
}

.column2.active {
    display: block;
}

.menu {
    list-style: none;
}

.menu li {
    margin-bottom: 15px;
}

.menu li.active {
    background-color: #f0f0f0;
    border-left: 4px solid #203864;
}

.menu li.active a {
    font-weight: bold;
    color: #203864;
}

.menu a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.menu a img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 5px;
}

.content {
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 2rem;
}

/* .gallery img {
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
} */

.gallery img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 5px;
}

.menu li a {
    padding: 10px 5px;
    font-size: 15px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox:target {
    display: flex;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .column1,
    .column2 {
        width: 100%;
    }
}

.services-container .column1 {
    height: 500px;
    overflow-y: scroll;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.service-group-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 1rem !important;
}

.menu li.active a {
    padding-left: 10px;
}

.gallery img {
    width: 325px;
    height: 225px;
    object-fit: cover;
}

.service-group-title {
    font-size: 16px;
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .column1,
    .column2 {
        width: 100%;
    }

    .services-container .column1 {
        height: auto;
        overflow-y: visible;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .menu.collapsed {
        display: none;
    }

    .service-group-title {
        cursor: pointer;
        background-color: #eee;
        padding: 10px;
        margin-top: 1rem;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 2rem;
    }
}

.service-group-title {
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
  .service-group-title:hover {
    background-color: #e0e0e0;
  }
}