 .cause_section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .cause_section img {
            max-width: 100%; /* Adjust the width as needed for mobile */
            margin-bottom: 20px;
        }

        .cause_disc {
            flex: 1;
            padding-left: 20px;
        }

        @media (min-width: 769px) {
            .cause_section {
                flex-direction: row;
            }

            .cause_section img {
                max-width: 50%; /* Adjust the width as needed for desktop */
                margin-right: 20px; /* Add margin to separate the image from content */
                margin-bottom: 0;
            }
        }
          .newsletter-container {
        max-width: 170px;
        float: right;
    }

    /* Media query for smaller screens */
    @media (max-width: 767px) {
        .newsletter-container {
            max-width: 100%; /* Full width for smaller screens */
            float: none; /* Remove float for stacking behavior */
            margin-bottom: 10px; /* Optional: Add spacing between stacked images */
        }
    }

       @keyframes shakeAnimation {
        0% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(-5px);
        }
        50% {
            transform: translateX(5px);
        }
        75% {
            transform: translateX(-5px);
        }
        100% {
            transform: translateX(0);
        }
    }

    .shaking-image {
        animation: shakeAnimation 0.5s ease-in-out infinite;
    }