
        :root {
            --brand-green: #12b614;
            --brand-green-soft: rgba(18, 182, 20, 0.12);
            --brand-green-border: rgba(18, 182, 20, 0.24);
        }

        body {
            background: #ffffff;
        }

        .navbar-glass,
        .navbar {
            background: #ffffff !important;
            border-bottom: 1px solid var(--brand-green-border);
        }

        .nav-link {
            color: #12b614 !important;
        }

        

        .donation-hero {
            background: #ffffff;
            padding: 3rem 0 3rem;
        }

        .donation-banner {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .donation-banner .mbr-overlay {
            background-color: #000;
            opacity: 0.45;
        }

        .donation-title {
            color: #0f3d10;
            font-weight: 700;
        }

        .impact-card,
        .donate-card,
        .bank-details-card {
            border: 1px solid var(--brand-green-border);
            border-radius: 14px;
            box-shadow: 0 8px 20px rgba(18, 182, 20, 0.06);
            background: #ffffff;
        }

        .impact-card {
            cursor: pointer;
            transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
        }

        .impact-cards.has-active .impact-card:not(.is-active) {
            filter: blur(3px);
            opacity: 0.45;
        }

        .impact-card.is-active {
            transform: translateY(-4px);
        }

        .impact-card:focus-visible {
            outline: 3px solid var(--brand-green);
            outline-offset: 3px;
        }

        @media (prefers-reduced-motion: reduce) {
            .impact-card {
                transition: none;
            }
        }

        .impact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--brand-green-soft);
            color: var(--brand-green);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .btn-donate,
        .btn-donate:hover,
        .btn-donate:focus {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: #ffffff;
        }

        .form-control,
        .form-select {
            background: #ffffff;
            border-color: #d9e8d9;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 0.25rem var(--brand-green-soft);
        }

        .donation-consent {
            background: #f8fbf8;
            border: 1px solid var(--brand-green-border);
            border-radius: 12px;
        }

        .payment-method-details {
            background: #f8fbf8;
            border: 1px solid var(--brand-green-border);
            border-radius: 12px;
        }

        .bank-details-card {
            background: #12b614;
            border: 1px solid var(--brand-green-border);
            color: #ffffff;
        }

        .bank-details-card .bank-details-list {
            line-height: 1.9;
        }

        #bank-details-title {
            width: 100%;
        }
    

        .campaign-wrapper {
            max-width: 1320px;
            margin: 45px auto;
            padding: 0 20px;
        }

        /* CARD */

        .campaign-card {
            background: #fff;
            border: 1px solid #d6dce0;
            border-radius: 2px;
            overflow: hidden;
            display: flex;
            min-height: 280px;
            margin-bottom: 30px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        /* IMAGE */

        .campaign-image {
            width: 34%;
            min-height: 280px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .campaign-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }

        .campaign-card:hover .campaign-image img {
            transform: scale(1.03);
        }

        /* CONTENT */

        .campaign-content {
            width: 66%;
            padding: 32px 38px;
            display: flex;
            flex-direction: column;
        }

        .campaign-category {
            font-size: 15px;
            font-weight: 700;
            color: #12b614;
            letter-spacing: .4px;
            margin-bottom: 5px;
        }

        .campaign-category span {
            color: #12b614;
            margin: 0 7px;
        }

        .campaign-title {
            font-family: Georgia, "JOST", serif;
            font-size: 30px;
            line-height: 1.2;
            font-weight: 700;
            color: #12b614;
            margin-bottom: 10px;
        }

        .campaign-by {
            font-family: Georgia, "JOST", serif;
            font-size: 17px;
            color: black;
            margin-bottom: 25px;
        }

        .campaign-by strong {
            font-weight: 700;
        }

        .campaign-description {
            font-size: 17px;
            line-height: 1.55;
            color: black;
            max-width: 850px;
            margin-bottom: 25px;
        }

        .campaign-description-text {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
        }

        .campaign-description-text.expanded {
            display: inline;
        }

        .read-more {
            color: #12b614;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        .campaign-tables {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            margin: 0 0 25px;
        }

        .campaign-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .campaign-table caption {
            caption-side: top;
            color: #243b53;
            font-size: 17px;
            font-weight: 700;
            padding-bottom: 8px;
        }

        .campaign-table th,
        .campaign-table td {
            border: 1px solid #d6dce0;
            padding: 8px 10px;
            text-align: left;
        }

        .campaign-table thead th {
            background: #2d697f;
            color: #fff;
        }

        .campaign-table tbody tr:nth-child(even) {
            background: #f7f9fa;
        }

        @media (max-width: 767px) {
            .campaign-tables {
                grid-template-columns: 1fr;
            }
        }

        /* BOTTOM AREA */

        .campaign-bottom {
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .funding-area {
            flex: 1;
        }

        .funding-text {
            font-size: 21px;
            color: #34495e;
            margin-bottom: 10px;
        }

        .funding-text .raised {
            color: black;
            font-weight: 700;
            font-size: 24px;
        }

        .progress {
            height: 13px;
            background-color: #e7e6e2;
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-bar {
            background-color: #12b614;
            border-radius: 10px;
        }

        /* DONATION */

        .donation-box {
            display: flex;
            height: 48px;
            width: 310px;
            flex-shrink: 0;
        }

        .donation-input-wrapper {
            display: flex;
            align-items: center;
            border: 1px solid #bcc6cb;
            background: white;
            flex: 1;
        }

        .currency {
            font-size: 19px;
            padding-left: 14px;
            color: #34495e;
        }

        .donation-input {
            border: none;
            outline: none;
            width: 100%;
            padding: 10px;
            font-size: 19px;
            color: #34495e;
        }

        .donate-btn {
            border: none;
            background: #12b614;
            color: white;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            padding: 0 30px;
            transition: background .2s ease;
        }

        .donate-btn:hover {
            background: #12b614;
        }

        /* TABLET */

        @media (max-width: 992px) {

            .campaign-card {
                flex-direction: column;
            }

            .campaign-image {
                width: 100%;
                height: 300px;
            }

            .campaign-content {
                width: 100%;
            }

            .campaign-bottom {
                flex-direction: column;
                align-items: stretch;
            }

            .donation-box {
                width: 100%;
            }
        }

        /* MOBILE */

        @media (max-width: 576px) {

            .campaign-wrapper {
                padding: 0 10px;
                margin: 20px auto;
            }

            .campaign-content {
                padding: 22px;
            }

            .campaign-image {
                height: 230px;
            }

            .campaign-title {
                font-size: 24px;
            }

            .campaign-description {
                font-size: 15px;
            }

            .funding-text {
                font-size: 17px;
            }

            .funding-text .raised {
                font-size: 21px;
            }
        }

