* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #020E28;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    padding: 15px 0;
}

.logo {
    display: block;
    height: 40px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.go-back-btn {
    background: white;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 7px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: background-color 0.2s;
    color: #020E28;
    font-family: inherit;
     
}

.go-back-btn:hover {
    background: #2e85c0;
    color: white;
    border-color: #2e85c0;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 30px;
    align-items: start;
}

/* ==========================================
   DONATION SUMMARY SIDEBAR
   ========================================== */
.donation-summary {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 500;
    color: #020E28;
    margin-bottom: 24px;
}

.donation-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
    max-height: 340px;
    overflow-y: auto;
    padding: 8px 4px 8px 0;
}

.donation-items::-webkit-scrollbar {
    width: 5px;
}

.donation-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.donation-items::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 4px;
}

.donation-items::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Donation Item — two-column layout matching checkout.html */
.donation-item {
    background: #F1F1F1;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.donation-item-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.donation-label {
    font-size: 1rem;
    font-weight: 600;
    color: #020E28;
    padding-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.donation-item-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    flex-shrink: 0;
    width: clamp(95px, 38%, 250px);
    min-width: 0;
    overflow: hidden;
}

/* Row holding the amount box + delete button side by side */
.amount-delete-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* Amount box (white pill containing $ and input only) */
.amount-input-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 12px;
    gap: 6px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.amount-input-wrapper .dollar-sign {
    font-size: 1rem;
    color: #089DD6;
    font-weight: 600;
    flex-shrink: 0;
}

.amount-input-wrapper input {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    flex: 1;
    width: 0;
    min-width: 0;
    max-width: 100%;
    text-align: right;
    background: transparent;
    padding: 0;
}

/* Hide number input spinners */
.donation-amount-input::-webkit-outer-spin-button,
.donation-amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Delete button sits outside the amount box */
.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4f;
}

.delete-btn img,
.delete-btn svg {
    width: 18px;
    height: 18px;
}

.delete-btn:hover {
    opacity: 0.7;
}

/* Donation type dropdown in right column */
.dropdown {
    border: none;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    width: 100%;
}

.monthly-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Success update message in left column */
.dcs-update-msg {
    background: #d4edda;
    color: #2e7d32;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
}

.monthly-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d5dd;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: #fff;
    flex-shrink: 0;
}

.monthly-checkbox input[type="checkbox"]:checked {
    background: #2b9bb3;
    border-color: #2b9bb3;
}

.monthly-checkbox label {
    font-size: 14px;
    color: #020E28;
    font-weight: 500;
    cursor: pointer;
}

/* Monthly Updated Alert */
.monthly-alert {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #d4edda;
    color: #1a7a36;
    border: 1px solid #b8eacc;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    animation: fadeInAlert 0.2s ease;
}

@keyframes fadeInAlert {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Monthly Confirmation Modal */
.monthly-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monthly-modal {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.monthly-modal h3 {
    font-size: 16px;
    font-weight: 700;
    color: #020E28;
    margin-bottom: 10px;
}

.monthly-modal p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.monthly-modal p strong {
    color: #020E28;
}

.monthly-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.monthly-modal-yes {
    background: #EDAA3B;
    color: #1e1e1e;
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.monthly-modal-cancel {
    background: #fff;
    color: #555;
    border: 1.5px solid #d0d5dd;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.monthly-modal-yes:hover { background: #d4952e; }
.monthly-modal-cancel:hover { border-color: #888; color: #333; }

/* Terms Modal */
.terms-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-modal {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

.terms-modal h3 {
    font-size: 18px;
    font-weight: 700;
    color: #020E28;
    margin-bottom: 16px;
    text-align: center;
}

.terms-modal-body {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    overflow-y: auto;
    flex: 1;
    margin-bottom: 20px;
}

.terms-modal-body p {
    margin-bottom: 12px;
}

.terms-modal-close {
    background: #EDAA3B;
    color: #1e1e1e;
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    align-self: center;
}

.terms-modal-close:hover {
    background: #d4952e;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid #e8e8ec;
    margin: 24px 0 20px;
}

/* Operational Costs Section */
.operational-section {
    margin-bottom: 28px;
}

.operational-text {
    font-size: 13.5px;
    color: #A1A1A1;
    margin-bottom: 14px;
    font-weight: 400;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #005578;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    background: #fff;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked {
    border-color: #005578;
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #089DD6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option label {
    font-size: 14px;
    color: #020E28;
    font-weight: 400;
    cursor: pointer;
}

.other-amount-input {
    padding: 6px;
    border: 1.5px solid #C4C4C4;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #020E28;
    outline: none;
    width: 63px;
}

.other-amount-input:focus {
    border-color: #005578;
}

/* Total Section */
.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.total-label {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

.total-amount {
    font-size: 24px;
    font-weight: 600;
    color:#000;
}

.minimum-note {
    text-align: center;
    font-size: 14px;
    color: #EDAA3B;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Add Another Button */
.add-donation-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: #EDAA3B;
    color: #1E1E1E;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.add-donation-btn:hover {
    background: #d4952e;
}

/* ==========================================
   BILLING SECTION
   ========================================== */
.billing-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-options {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.payment-option-btn {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: border-color 0.2s;
    color: #1e1e1e;
    font-family: inherit;
}

.payment-option-btn:hover {
    /* border-color: #0099cc; */
    color: white;
    background-color: #0099cc;
}

.payment-option-btn img {
    height: 20px;
}

.billing-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #020E28;
}

/* ==========================================
   FORMS
   ========================================== */
.billing-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    color: #000;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0099cc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: #000;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: #020E28;
    line-height: 1.4;
}

.checkbox-sms {
    margin-bottom: 28px;
}

.checkbox-sms input[type="checkbox"]:checked {
    accent-color: #089DD6;
}

/* Terms Links */
.terms-link {
    color: #089DD6;
    text-decoration: underline;
}

.terms-link:hover {
    color: #0077aa;
}

/* ==========================================
   PAYMENT METHOD TABS
   ========================================== */
.payment-method-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-tab {
    flex: 1;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    color: #1e1e1e;
    font-family: inherit;
}

.payment-tab:hover {
    border-color: #009BD3;
}

.payment-tab.active {
    background: #009BD3;
    color: white;
    border-color: #009BD3;
}

.payment-tab svg {
    width: 20px;
    height: 16px;
    flex-shrink: 0;
}

/* Card Input */
.card-input-wrapper {
    position: relative;
}

.card-input-wrapper input {
    padding-right: 120px;
}

.card-logos {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
}

.card-logos img {
    height: 20px;
    width: 30px;
    object-fit: contain;
}

/* Payment section container for card/echeck fields */
#card-payment-section,
#echeck-payment-section {
    background: #f1f1f1;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

#card-payment-section .form-group:last-child,
#echeck-payment-section .form-group:last-child {
    margin-bottom: 0;
}

/* Matching Gift Section */
.matching-gift-section {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.matching-gift-text {
    font-size: 14px;
    color: #020E28;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.5;
}


/* ==========================================
   SUBMIT BUTTON
   ========================================== */
.complete-payment-btn {
    width: 100%;
    background: #EDAA3B;
    color: #1e1e1e;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.complete-payment-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.3);
}

.complete-payment-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==========================================
   TRANSACTION MESSAGE
   ========================================== */
.transaction-message {
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.transaction-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.transaction-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.transaction-message.loading {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Searchable Dropdown */
.searchable-dropdown {
    position: relative;
}

.searchable-trigger {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #000;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}

.searchable-trigger:hover {
    border-color: #0099cc;
}

.searchable-trigger.error {
    border-color: #dc3545;
}

.searchable-trigger.placeholder .searchable-trigger-text {
    color: #999;
}

.searchable-trigger .searchable-trigger-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.searchable-arrow {
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.2s;
}

.searchable-dropdown.open .searchable-arrow {
    transform: rotate(180deg);
}

.searchable-panel {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.searchable-dropdown.open .searchable-panel {
    display: block;
}

.searchable-panel .searchable-input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 6px 6px 0 0;
    font-size: 14px;
    font-family: inherit;
    color: #000;
    background: #f9f9f9;
    outline: none;
}

.searchable-panel .searchable-input::placeholder {
    color: #999;
}

.searchable-options {
    max-height: 200px;
    overflow-y: auto;
}

.searchable-option {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #020E28;
    font-family: inherit;
}

.searchable-option:hover {
    background: #f0f8ff;
}

.searchable-dropdown.disabled .searchable-trigger {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form Validation Error */
.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
}

.form-group .error-text {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #D9D9D9;
    padding: 50px 0 0;
    margin-top: 60px;
}

.footer .container {
    padding: 34px 20px;
}

.footer-badges {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.footer-badges img {
    height: 80px;
    max-width: 180px;
    object-fit: contain;
}

.footer-bottom {
    background: #172E47;
    padding: 45px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #385A7F;
    padding-top: 20px;
}

.footer-bottom p {
    color: #fff;
    opacity: 0.57;
    font-size: 13.5px;
}

.footer-logo {
    height: 48px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* ==========================================
   DCS SUMMARY CARD OVERRIDES
   ========================================== */
.dcs-summary-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.dcs-summary-title-head {
    font-size: 24px;
    font-weight: 500;
    color: #020E28;
    margin-bottom: 24px;
}

.dcs-summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 340px;
    overflow-y: auto;
    padding: 8px 4px 8px 0;
    margin-bottom: 0;
}

.dcs-summary-item {
    background: #F1F1F1 !important;
    border-radius: 10px !important;
    padding: 15px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
}

.dcs-summary-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.dcs-summary-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #020E28 !important;
    margin-bottom: 0 !important;
}

.dcs-checkbox {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #020E28;
    font-weight: 500;
    cursor: pointer;
}

.dcs-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d5dd;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: #fff;
    flex-shrink: 0;
}

.dcs-checkbox input[type="checkbox"]:checked {
    background: #2b9bb3;
    border-color: #2b9bb3;
}

.dcs-summary-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
}

.dcs-amount-box {
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    border-radius: 8px !important;
    padding: 4px 8px !important;
    gap: 5px !important;
}

.dcs-amount-box span {
    color: #089DD6 !important;
    font-weight: 600 !important;
    margin-right: 0 !important;
    z-index: auto !important;
}

.dcs-amount {
    border: none !important;
    outline: none !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    width: 60px !important;
    text-align: center !important;
    background: transparent !important;
    padding: 0 !important;
}

.dcs-amount::-webkit-outer-spin-button,
.dcs-amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.dcs-remove {
    cursor: pointer;
    width: 18px;
    height: 18px;
    opacity: 1;
    margin-left: 4px !important;
}

.dcs-remove:hover {
    opacity: 0.7;
}

.dcs-type {
    border: none !important;
    background: #fff !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    color: #333 !important;
    cursor: pointer !important;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.hidden {
    display: none !important;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 968px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .donation-summary {
        order: -1;
        position: static;
        max-height: none;
    }

    .donation-items {
        max-height: 260px;
    }

    .billing-section {
        order: 1;
    }

    .main-content {
        padding: 20px 0;
    }

    .footer-badges {
        gap: 20px;
        padding-bottom: 30px;
    }

    .footer-badges img {
        height: 60px;
    }

    .footer-bottom .container {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }

    .checkout-grid {
        gap: 20px;
    }

    .donation-summary {
        padding: 24px 18px 22px;
        border-radius: 12px;
    }

    .card-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .donation-item {
        padding: 14px 14px;
        display: grid;
        grid-template-columns: 1fr clamp(85px, 36%, 120px);
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 8px;
        align-items: center;
    }

    .donation-item-left,
    .donation-item-right {
        display: contents;
    }

    .donation-label {
        font-size: 14px;
        grid-area: 1 / 1;
        align-self: center;
    }

    .monthly-checkbox {
        grid-area: 2 / 1;
        align-self: center;
    }

    .amount-delete-row {
        grid-area: 1 / 2;
        align-self: center;
        gap: 6px;
    }

    .dropdown {
        grid-area: 2 / 2;
        align-self: center;
    }

    .amount-input-wrapper {
        padding: 5px 8px;
        gap: 4px;
        border-radius: 8px;
    }

    /* .amount-input-wrapper .dollar-sign {
        font-size: 13px;
    } */

    /* .amount-input-wrapper input {
        font-size: 13px;
    } */

    .delete-btn img,
    .delete-btn svg {
        width: 15px;
        height: 15px;
    }

    /* .dropdown {
        font-size: 13px;
        padding: 5px 6px;
    } */

    .total-label,
    .total-amount {
        font-size: 20px;
    }

    .add-donation-btn {
        padding: 14px;
        font-size: 15px;
    }

    .billing-section {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .billing-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .payment-options {
        flex-direction: column;
    }

    .payment-method-tabs {
        flex-direction: column;
    }

    .complete-payment-btn {
        font-size: 15px;
        padding: 14px;
    }

    .go-back-btn {
        margin-bottom: 20px;
        padding: 6px 10px;
        font-size: 13px;
    }
     

    /* Header */
    .header {
        padding: 12px 0;
    }

    .logo {
        height: 32px;
    }

    /* Footer */
    .footer {
        margin-top: 40px;
        padding: 30px 0 0;
    }

    .footer .container {
        padding: 20px 14px;
    }

    .footer-badges {
        justify-content: center;
        gap: 16px;
        padding-bottom: 24px;
    }

    .footer-badges img {
        height: 44px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
        padding: 16px 14px 0;
        border-top: 1px solid #385A7F;
    }

    .footer-logo {
        height: 36px;
    }

    .social-links {
        justify-content: center;
    }
}