    .donation-heading{
        font-family: "Lato", Sans-serif;
            font-size: 40px;
            font-weight: 700;
            line-height: 1.3em;
            color:#000
    }    

    
    .donate-img img{
        width: 100%;
            height: 98px;
            object-fit: contain;
            object-position:left; 
            margin: 30px 0px;
           
    }
    #donation-wrapper p {
        color: #000;
        margin-bottom: 9px;
    }

    #donation-wrapper {
        margin-bottom: 20px;
        font-family: inherit;
    }

    .donation-main-tabs {
        display: flex;
        gap: 10px;
        border-radius: 8px;
        background-color: #fff;
        margin-bottom: 15px;
        justify-content: space-between;

    }

    .donation-main-tabs .donation-tab,
    .amount-buttons .donation-amount-btn {
        padding: 14px 20px;
        width: -webkit-fill-available;
        background: #fff;
        cursor: pointer;
        border-radius: 6px;
        font-size: 16px;
        font-family: 'Lato';
        text-transform: uppercase;
    }

    .donation-tab.active {
        background: #c93837;
        color: #fff;
    }

    .donation-amounts {
        display: none;
    }

    .donation-amounts.active {
        display: block;
    }

    .amount-buttons {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }


    .donation-amount-btn.active,
    .donation-amount-btn:hover {
        background: #c93837;
        color: #fff;
    }

    .donate-submit-btn {
        padding: 12px 25px;
        background: #c93837;
        color: #fff;
        border: none;
        width: 100%;
        margin-top: 10px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
        font-size: 16px;
        font-family: 'Lato';
        text-transform: uppercase;

    }

    .donate-submit-btn:hover {
        /* background: #e64a19; */
        background: #c93837;
        color: #fff;
    }

    .wrapper {
        display: flex;
        column-gap: 2%;
        max-width: 80%;
        width: 100%;
        margin: auto;
        padding: 3rem 0;
    }

    .wrapper .column-1 {
        flex: 0 0 48%;
    }

    .wrapper .column-2 {

        flex: 0 0 48%;
    }

    #donationForm {
        background-color: #e4e4e4;
        padding: 1rem;
        padding: 2.5rem 2rem;
        border-radius: 5px;
        position: sticky;
        top: 90px;
    }

    .para{
        color: #000;
        font-family: 'Lato';
    }
    .para-20{
        font-size: 20px;
    }
    .para-16{
        font-size: 16px;
    }
    .para-18 {
             font-size: 18px;
         }

    @media only screen and (max-width:767px) {

        .wrapper {
            display: flex;
            gap: 10px;
            max-width: 93%;
            padding: 3rem 0;
            flex-direction: column;
        }

        .wrapper .column-1 {
            flex: 0 0 100%;
        }

        .wrapper .column-2 {

            flex: 0 0 100%;
        }

           .donation-heading {
               font-family: "Lato", Sans-serif;
               font-size: 30px;
               font-weight: 700;
               line-height: 1.3em;
               color: #000
           }
    }

    @media only screen and (max-width:600px) {
        .donation-main-tabs {
            gap: 0;
            flex-wrap: wrap;
        }
    }