.sg-73b51066-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.sg-73b51066-header {
    text-align: center;
    margin-bottom: 50px;
}

.sg-73b51066-section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #0A2540;
}

.sg-73b51066-underline {
    width: 50px;
    height: 3px;
    background-color: #0A2540;
    margin: 0 auto;
    border-radius: 2px;
}

.sg-73b51066-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sg-73b51066-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sg-73b51066-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sg-73b51066-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 12px 12px 0 0;
    background: #e9ecef;
    overflow: visible;
}

.sg-73b51066-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.sg-73b51066-icon-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background-color: #0A2540;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

.sg-73b51066-icon-badge i,
.sg-73b51066-icon-badge svg {
    color: #ffffff;
    fill: #ffffff;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.sg-73b51066-content {
    padding: 35px 24px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sg-73b51066-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0A2540;
    margin: 0 0 10px 0;
}

.sg-73b51066-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 1024px) {
    .sg-73b51066-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .sg-73b51066-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sg-73b51066-wrapper {
        padding: 40px 15px;
    }
}
