    .donate-sec {
        max-width: 1440px;
        margin: 0 auto;
        /* display: flex;
        flex-direction: column; */
        min-height: 100vh;
    }

    /* Header */
    .donate-sec header {
        text-align: center;
        padding: 15px 10px;
        background: #fff;
        border-bottom: 1px solid #ddd;
    }

    .donate-sec header img {
        max-height: 155px;
        width: auto;
    }

    /* Main */
    .donate-sec main {
        padding: 20px;
    }

    .donate-sec .donate-box {
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* width: 1200px;
      display: flex;
      flex-direction: column;
      overflow: hidden; */
    }

    .donate-sec .donate-title {
        background: #a48c72;
        color: #fff;
        padding: 12px;
        font-weight: bold;
        text-align: left;
    }

    .donate-sec .donate-content-area {
        display: flex;
        flex-wrap: wrap;
    }

    .donate-sec .left-side,
    .donate-sec .right-side {
        /* flex: 1; */
        min-width: 280px;
    }

    .donate-sec .left-side {
        border-right: 1px solid #eee;
        padding: 15px;
        width: 40%;
    }

    .donate-sec .left-side img {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 12px;
        border-radius: 4px;
    }

    .donate-sec .left-side h2 {
        font-size: 20px;
        margin-bottom: 8px;
        text-align: start;
    }

    .donate-sec .left-side p {
        font-size: 14px;
        margin-bottom: 12px;
        color: #555;
    }

    .donate-sec .donate-btn {
        display: inline-block;
        padding: 10px 20px;
        background: #4caf50;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 14px;
    }

    .donate-sec .right-side {
        padding: 15px;
        /* empty space for your code */
        width: 54%;
    }

    /* Footer */
    .donate-sec footer {
        background: #fff;
        border-top: 1px solid #ddd;
        padding: 12px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        font-size: 13px;
    }

    .donate-sec footer .footer-logo {
        flex: 1;
        text-align: center;
    }

    .donate-sec footer img {
        max-height: 40px;
        width: auto;
    }

    .donate-sec footer .footer-text {
        flex: 1;
        text-align: left;
    }

    .donate-sec footer .footer-links {
        flex: 1;
        text-align: right;
    }

    .donate-sec footer a {
        color: #a48c72;
        text-decoration: none;
    }

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

        .donate-sec .left-side {
            border-right: none;
            border-bottom: 1px solid #eee;
            width: 100%;
        }

        .donate-sec .right-side {
            width: 100%;
        }

        .donate-sec footer {
            flex-direction: column;
            text-align: center;
        }

        .donate-sec footer .footer-text,
        .donate-sec footer .footer-links {
            text-align: center;
            margin-top: 8px;
        }
    }
