.scg-wrapper {
    background-color: #F5F5F5;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px; /* Optional overall section radius, not strictly requested but looks good */
}

.scg-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.scg-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scg-title {
    font-size: 24px; /* Default generic size, can be customized in Elementor */
    margin: 0;
    font-weight: 700;
}

.scg-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.scg-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Interaction */
.scg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.scg-card:hover .scg-icon-wrapper .elementor-icon i {
    color: #FFFFFF !important;
}

.scg-card:hover .scg-icon-wrapper .elementor-icon svg {
    fill: #FFFFFF !important;
}

.scg-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #FFF0E8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 300ms ease-in-out;
    margin-bottom: 8px;
}

.scg-icon-wrapper .elementor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.scg-icon-wrapper .elementor-icon i {
    font-size: 28px;
    transition: color 300ms ease-in-out;
}

.scg-icon-wrapper .elementor-icon svg {
    width: 28px;
    height: auto;
    transition: fill 300ms ease-in-out;
}

.scg-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.scg-card-list {
    flex-grow: 1;
}

.scg-card-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scg-card-list li {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 8px;
    line-height: 1.5;
}

.scg-card-list li:last-child {
    margin-bottom: 0;
}

.scg-accent-bar {
    width: 40px;
    height: 3px;
    margin-top: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scg-wrapper {
        padding: 60px 16px;
    }
    
    .scg-cards-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .scg-card {
        flex-basis: 100%;
        width: 100%;
    }
}