.sa-container-936de8ce {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}
.sa-col-936de8ce {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.sa-col-img-wrap-936de8ce {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.sa-col-img-936de8ce {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sa-col-content-936de8ce {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.sa-col-title-936de8ce {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: bold;
}
.sa-col-intro-936de8ce {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.5;
}
.sa-toggle-btn-936de8ce {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: auto;
}
.sa-toggle-btn-936de8ce:hover {
    background-color: #1a252f;
}

/* Service Wrap */
.sa-services-wrap-936de8ce {
    display: none;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.sa-services-wrap-936de8ce.is-open {
    display: block;
    animation: saFadeIn 0.3s ease forwards;
}

/* Nested Service Items */
.sa-service-item-936de8ce {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.sa-service-item-936de8ce:last-child {
    border-bottom: none;
}
.sa-service-title-btn-936de8ce {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 10px 0;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
}
.sa-service-title-btn-936de8ce:hover {
    color: #e74c3c;
}
.sa-icon-936de8ce {
    font-size: 1.2em;
    font-weight: normal;
    transition: transform 0.3s ease;
}
.sa-service-title-btn-936de8ce[aria-expanded="true"] .sa-icon-936de8ce {
    transform: rotate(45deg);
}

.sa-service-desc-936de8ce {
    display: none;
    padding: 0 0 15px 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}
.sa-service-desc-936de8ce.is-open {
    display: block;
}

@keyframes saFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .sa-col-936de8ce {
        flex: 1 1 100%;
    }
}