.sg-container-87faebdd {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.sg-container-87faebdd *, 
.sg-container-87faebdd *::before, 
.sg-container-87faebdd *::after {
    box-sizing: border-box;
}

.sg-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.sg-grid-col {
    padding: 15px;
    display: flex;
}

.sg-col-25 { width: 25%; }
.sg-col-33 { width: 33.333%; }
.sg-col-50 { width: 50%; }
.sg-col-66 { width: 66.666%; }
.sg-col-75 { width: 75%; }
.sg-col-100 { width: 100%; }

@media (max-width: 991px) {
    .sg-grid-col {
        width: 100% !important;
    }
}

.sg-group-box {
    border: 1px solid #e2ecf6;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(12, 99, 182, 0.03);
}

.sg-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #0c63b6;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.sg-group-icon {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-group-icon svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    fill: #0c63b6;
}

.sg-group-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0c63b6;
}

/* Inside items grid */
.sg-items-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    flex-grow: 1;
}

.sg-items-count-1 {
    grid-template-columns: 1fr;
}

.sg-card-wrapper {
    display: flex;
    width: 100%;
}

.sg-card {
    border: 1px solid #e2ecf6;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

a.sg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(12, 99, 182, 0.1);
}

.sg-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px; /* Default height */
    overflow: hidden;
    background-color: #f7fafc;
}

.sg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-item-label-container {
    padding: 14px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #e2ecf6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-item-label {
    font-size: 15px;
    font-weight: 700;
    color: #0c63b6;
}

/* Footer Features Bar */
.sg-footer-bar {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e2ecf6;
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(12, 99, 182, 0.03);
}

.sg-footer-item {
    flex: 1;
    min-width: 220px;
    display: flex;
    gap: 16px;
    padding: 10px 15px;
    border-right: 1px solid #e2ecf6;
}

.sg-footer-item:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .sg-footer-item {
        border-right: none;
        border-bottom: 1px solid #e2ecf6;
        width: 100%;
    }
    .sg-footer-item:last-child {
        border-bottom: none;
    }
}

.sg-footer-icon {
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.sg-footer-icon svg {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    fill: #0c63b6;
}

.sg-footer-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sg-footer-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #0c63b6;
}

.sg-footer-desc {
    font-size: 13px;
    color: #4a5568;
    margin: 0;
    line-height: 1.4;
}
