        /* Header */
        .profit-header {
text-align: left;
    margin-bottom: 56px;
        }

        .profit-header h1 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .profit-header p {
            color: #525252;
        }

        /* Cards Container */
        .cards-wrapper {
            align-items: stretch;
            display: grid;
            gap: 36px;
            grid-template-columns: 1.5fr 1fr;
        }

        /* Card Styles */
        .profit-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    padding: 40px;
    border: 1px solid #e5e7eb73;
        }


        /* Left Card */
        .card-left {
            display: flex;
            flex-direction: column;
        }

        .card-image {
         display: block;
        height: 360px;
        object-fit: cover;
        width: 100%;
        border-radius: 28px;
        object-position: center;
        }

        .card-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            padding-top: 36px;
        }

        .card-wrap{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-direction: row;
        }
        .card-amount {
          color: #111827;
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
            font-family: Google Sans, sans-serif;
            letter-spacing: -2%;
        }

        .card-title {
        color: #111827;
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        }

        .card-description p{
        color: #525252;
    flex-grow: 1;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 0;a
        }


        /* Right Card */
        .card-right {
            display: flex;
            flex-direction: column;
            padding: 36px;
        }

        .card-image-right {
width: 100%;
    border-radius: 28px;
    display: block;
    height: 408px;
    object-fit: cover;
    object-position: center;
        }

        .card-content-right {
            padding: 16px 0 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .trusted-badge {
              align-items: center;
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            padding: 16px;
            border-radius: 24px;
            background: #F2F7FD;
        }

        .trusted-icon {
               height: 43px;
            width: 43px;
            fill: #3E8BEF;
        }

        .trusted-text {
            font-size: 14px;
        }

        .trusted-text-main {
                color: #3E8BEF;
    font-weight: 400;
    font-family: Inter Tight, sans-serif;
    font-size: 18px;
        }

        .trusted-text-sub {
               color: #3E8BEF;
            font-weight: 700;
            font-family: Inter Tight, sans-serif;
            font-size: 18px;
        }

        .cta-button {
        background: #F37720;
            border: none;
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            font-size: 22px;
            font-weight: 700;
            padding: 15px 40px;
            transition: all .3s ease;
            display: block;
            width: 100%;
            text-align: center;
            font-family: Inter Tight, sans-serif;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
        }

        /* Responsive */
         @media (max-width: 1024px) {

            .profit-card, .card-right{
                padding: 16px;
            }
            .card-image{
                height: 272px;
            }
            .card-wrap {
            margin-bottom: 16px;
            flex-direction: column;
            gap: 10px;
            align-items: self-start;
        }
        .card-description p {
    font-size: 16px;
}
.card-image-right {
    height: 316px;
}
.cta-button {
    font-size: 16px;
}
.cards-wrapper {
                gap: 24px;
            }
         }
        @media (max-width: 768px) {
.profit-header {
    margin-bottom: 35px;
}
            .cards-wrapper {
                grid-template-columns: 1fr;
                gap: 16px;
            }

.card-image {
        height: 156px;
        border-radius: 20px;
    }
    .card-amount {
    font-size: 36px;
}
.card-title {
    font-size: 20px;
}
    .card-image-right {
        height: 240px;
        border-radius: 20px;
    }
    .trusted-text-sub {
    font-size: 16px;
}
        }