    /* Promo Code Cards */
    .promo-code-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .promo-code-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .promo-card-image-section {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .promo-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(2px);
    }

    .promo-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
        z-index: 1;
    }

    .promo-card-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 2;
        color: #ffffff;
    }

    .promo-provider-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .promo-provider-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        object-fit: cover;
    }

    .promo-provider-details {
        color: #ffffff;
    }

    .promo-provider-name {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .promo-rating {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .promo-star-icon {
        color: #ffc107;
        font-size: 14px;
    }

    .promo-rating-text {
        font-size: 12px;
        color: #ffffff;
        opacity: 0.95;
    }

    .promo-code-details {
        margin-top: auto;
    }

    .promo-code-label {
        font-size: 14px;
        color: #ffffff;
        opacity: 0.9;
        margin: 0;
    }

    .promo-code-text {
        font-size: 40px;
        font-weight: 900;
        color: #FF8F00;
        letter-spacing: 2px;
        margin: 0 0 5px 0;
        line-height: 1.1;
    }

    .promo-discount-label {
        font-size: 14px;
        color: #ffffff;
        opacity: 0.9;
        margin: 0;
    }

    .promo-discount-percent {
        font-size: 38px;
        font-weight: 900;
        color: #ffffff;
        margin: 0 0 5px 0;
        line-height: 1.1;
    }

    .promo-expiry-label {
        font-size: 12px;
        color: #ffffff;
        opacity: 0.9;
        margin: 0 0 4px 0;
    }

    .promo-expiry-time {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }

    /* Subscription Cards */
    .subscription-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .subscription-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .subscription-card-image-section {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .subscription-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .subscription-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
        z-index: 1;
    }

    .subscription-card-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 2;
        color: #ffffff;
    }

    .subscription-provider-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .subscription-provider-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        object-fit: cover;
    }

    .subscription-provider-details {
        color: #ffffff;
    }

    .subscription-provider-name {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .subscription-rating {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .subscription-star-icon {
        color: #ffc107;
        font-size: 14px;
    }

    .subscription-rating-text {
        font-size: 12px;
        color: #ffffff;
        opacity: 0.95;
    }

    .subscription-details {
        margin-top: auto;
        text-align: left;
        margin-bottom: 5px;
    }

    .subscription-label {
        font-size: 14px;
        color: #ffffff;
        opacity: 0.9;
        margin:  0;
    }

    .subscription-type-text {
        font-size: 40px;
        font-weight: 900;
        color: #FF8F00;
        letter-spacing: 2px;
        margin: 0 0 5px 0;
        line-height: 1.1;
    }

    .subscription-discount-label {
        font-size: 14px;
        color: #ffffff;
        opacity: 0.9;
        margin: 0;
    }

    .subscription-discount-percent {
        font-size: 38px;
        font-weight: 900;
        color: #ffffff;
        margin: 0;
        line-height: 1.1;
    }

    .subscription-action {
        text-align: left;
    }

    .subscription-btn {
        background-color: #ffc107;
        border-color: #ffc107;
        color: #000000;
        padding: 12px 24px;
        font-weight: 700;
        transition: all 0.3s ease;
        border-radius:5px !important;
    }

    .subscription-btn:hover {
        background-color: #e0a800;
        border-color: #e0a800;
        color: #000000;
        transform: scale(1.05);
    }

    /* View All Button */
    .btn-view-all {
        background-color: #ffffff;
        border: none;
        color: #000000;
        padding: 8px 30px;
        font-size: 18px !important;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .btn-view-all:hover {
        background-color: #ffffff;
        color: #000000;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    /* Rewards Cards */
    .rewards-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .rewards-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .rewards-card-image-section {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        background: #212529;
        display: flex;
    }

    .rewards-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .rewards-card-overlay {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
        z-index: 1;
    }

    .rewards-card-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        display: flex;
        z-index: 2;
        color: #ffffff;
    }

    .rewards-details-wrapper {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
    }

    .rewards-left-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .rewards-provider-info {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .rewards-provider-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        object-fit: cover;
    }

    .rewards-provider-details {
        color: #ffffff;
    }

    .rewards-provider-name {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .rewards-rating {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .rewards-star-icon {
        color: #ffc107;
        font-size: 14px;
    }

    .rewards-rating-text {
        font-size: 12px;
        color: #ffffff;
        opacity: 0.95;
    }


    .rewards-details {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        margin-bottom: 5px;
    }

    .rewards-loyalty-group {
        display: flex;
        flex-direction: column;
    }

    .rewards-loyalty-label {
        font-size: 14px;
        color: #ffffff;
        opacity: 0.9;
        margin: 0 0 4px 0;
    }

    .rewards-free-service-group {
        display: flex;
        flex-direction: column;
    }

    .rewards-free-service-label {
        font-size: 14px;
        color: #ffffff;
        opacity: 0.9;
        margin: 0 0 4px 0;
    }

    .rewards-number-white {
        font-size: 48px;
        font-weight: 900;
        color: #ffffff;
        line-height: 1.1;
        margin: 0;
    }

    .rewards-number-orange {
        font-size: 48px;
        font-weight: 900;
        color: #FF8F00;
        line-height: 1.1;
        margin: 0;
    }

    .rewards-fee-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;
    }

    .rewards-fee-label {
        font-size: 14px;
        color: #ffffff;
        opacity: 0.9;
        margin: 0 0 4px 0;
    }

    .rewards-fee-amount {
        font-size: 32px;
        font-weight: 900;
        color: #ffffff;
        margin: 0;
        line-height: 1.1;
    }

    .rewards-action {
        text-align: left;
    }

    .rewards-enrol-btn {
        background-color: #FFB902;
        border-color: #FFB902;
        color: #000000;
        padding: 8px 24px;
        font-weight: 700;
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .rewards-enrol-btn:hover {
        background-color: #e68000;
        border-color: #e68000;
        color: #ffffff;
        transform: scale(1.05);
    }

    /* Section Styles */
    .deals-section {
        margin-bottom: 60px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .promo-code-text {
            font-size: 36px;
        }

        .promo-discount-percent {
            font-size: 42px;
        }

        .promo-card-image-section {
            height: 350px;
        }

        .subscription-card-image-section {
            height: 300px;
        }

        .subscription-type-text {
            font-size: 32px;
        }

        .subscription-discount-percent {
            font-size: 30px;
        }

        .rewards-card-image-section {
            height: 300px;
        }

        .rewards-number-white,
        .rewards-number-orange {
            font-size: 36px;
        }

        .rewards-fee-amount {
            font-size: 24px;
        }

    }