.sc-923-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    direction: rtl;
    font-family: "Fredoka", sans-serif !important;
}

.sc-923-wrapper * {
    font-family: "Fredoka", sans-serif !important;
}

@media (min-width: 768px) {
    .sc-923-wrapper {
        flex-direction: row;
        gap: 30px;
        flex-wrap: nowrap;
    }
}

.sc-923-card {
    background: linear-gradient(135deg, #ffffff 0%, #e6f7fc 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(6, 80, 94, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    border: 1px solid rgba(108, 202, 227, 0.3);
}

.sc-923-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 80, 94, 0.15);
}

.sc-923-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #06505E;
}

.sc-923-icon svg {
    width: 40px;
    height: 40px;
    fill: #06505E;
}

.sc-923-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #06505E;
    line-height: 1.25;
    text-align: center;
}

.sc-923-desc {
    font-size: 16px;
    font-weight: 400;
    color: #06505E;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.sc-923-sparkle {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 30px;
    color: #F59B1F;
    opacity: 0.8;
    transform: rotate(15deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sc-923-card:hover .sc-923-sparkle {
    opacity: 1;
    transform: rotate(30deg) scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .sc-923-card {
        max-width: 100%;
        padding: 24px 20px;
    }

    .sc-923-title {
        font-size: 20px;
    }

    .sc-923-desc {
        font-size: 15px;
    }

    .sc-923-icon,
    .sc-923-icon svg {
        font-size: 36px;
        width: 36px;
        height: 36px;
    }
}