.sg-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Left Accordion */
.sg-left {
    flex: 1 1 200px;
    max-width: 250px;
    overflow: hidden;
}

.sg-accordion {
    list-style: none !important;  /* remove bullets */
    margin: 0 !important;
    padding: 0;
}

.sg-accordion li {
    margin: 0;
    padding: 0;
    list-style-type: none !important; /* enforce no bullets */
}

.sg-accordion-item {
    display: block;
    width: 100%;
    padding: 25px;
    text-align: left;
    background: #A29B96;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sg-accordion-item.active,
.sg-accordion-item:hover {
    background: #A29B96;
}

/* Right Content */
.sg-right {
    flex: 3 1 600px;
}

.sg-service-content {
    display: none;
}

.sg-service-content.active {
    display: block;
}

.sg-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sg-images-grid img {
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Lightbox */
.sg-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.sg-lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
}

/* Responsive */
@media (max-width: 768px) {
    .sg-wrapper {
        flex-direction: column;
    }
    .sg-left {
        max-width: 100%;
    }
}
