        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        #customAmount {
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            width: 100%;
            max-width: 100%;
            font-size: 16px;
            margin-bottom: 12px;
            transition: border-color 0.3s ease;
        }
        
        #customAmount:focus {
            outline: none;
            border-color: #2d6a4f;
        }
        
        #customAmount::placeholder {
            color: #999;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
            animation: fadeIn 0.3s ease;
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: #fff;
            padding: 0;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            animation: slideIn 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            background: linear-gradient(135deg, #2d6a4f 0%, #1e4d36 100%);
            color: white;
            padding: 25px 30px;
            border-radius: 15px 15px 0 0;
            position: relative;
        }
        
        .modal-header h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
        }
        
        .modal-header p {
            margin: 8px 0 0 0;
            opacity: 0.9;
            font-size: 14px;
        }
        
        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            color: white;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            transition: transform 0.2s;
        }
        
        .close:hover {
            transform: scale(1.1);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }
        
        .form-group label .required {
            color: #e74c3c;
            margin-left: 3px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2d6a4f;
            box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #2d6a4f;
        }
        
        .checkbox-group label {
            margin: 0;
            cursor: pointer;
            font-size: 14px;
            color: #555;
        }
        
        .donation-summary {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            border-left: 4px solid #2d6a4f;
        }
        
        .donation-summary h3 {
            margin: 0 0 10px 0;
            color: #2d6a4f;
            font-size: 18px;
        }
        
        .donation-summary p {
            margin: 5px 0;
            color: #666;
            font-size: 14px;
        }
        
        .donation-summary .amount {
            font-size: 28px;
            font-weight: 700;
            color: #2d6a4f;
            margin: 10px 0;
        }
        
        .modal-footer {
            padding: 20px 30px 30px 30px;
            display: flex;
            gap: 15px;
        }
        
        .modal-footer button {
            flex: 1;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-submit {
            background: #2d6a4f;
            color: white;
        }
        
        .btn-submit:hover {
            background: #1e4d36;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
        }
        
        .btn-cancel {
            background: #e0e0e0;
            color: #666;
        }
        
        .btn-cancel:hover {
            background: #d0d0d0;
        }
        
        .form-error {
            color: #e74c3c;
            font-size: 13px;
            margin-top: 5px;
            display: none;
        }
        
        .form-group.error input,
        .form-group.error select {
            border-color: #e74c3c;
        }
        
        .form-group.error .form-error {
            display: block;
        }

        .donation-form-section { padding: 4rem 0; background: linear-gradient(135deg, #e8f4f8 0%, #ffffff 100%); }
        .donation-form-container { max-width: 800px; margin: 0 auto; background: white; padding: 3rem; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
        .form-section { margin-bottom: 2rem; }
        .form-section h3 { color: #0077b6; margin-bottom: 1rem; font-size: 1.3rem; }
        .amount-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
        .amount-option { position: relative; }
        .amount-option input[type="radio"] { position: absolute; opacity: 0; }
        .amount-option label { display: block; padding: 1.2rem; background: #f8f9fa; border: 2px solid #dee2e6; border-radius: 8px; text-align: center; cursor: pointer; transition: all 0.3s ease; font-weight: 600; color: #495057; }
        .amount-option input[type="radio"]:checked + label { background: #0077b6; border-color: #0077b6; color: white; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,119,182,0.3); }
        .amount-option label:hover { border-color: #0077b6; transform: translateY(-2px); }
        .custom-amount-wrapper { margin-top: 1rem; display: none; }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: #495057; font-weight: 500; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 2px solid #dee2e6; border-radius: 8px; font-size: 1rem; font-family: 'Work Sans', sans-serif; transition: border-color 0.3s ease; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #0077b6; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .donation-purpose { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.8rem; }
        .purpose-option { position: relative; }
        .purpose-option input[type="radio"] { position: absolute; opacity: 0; }
        .purpose-option label { display: block; padding: 0.8rem 1rem; background: #f8f9fa; border: 2px solid #dee2e6; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; text-align: center; font-size: 0.95rem; }
        .purpose-option input[type="radio"]:checked + label { background: #06d6a0; border-color: #06d6a0; color: white; }
        .tax-benefit-info { background: #fff3cd; border-left: 4px solid #ffc107; padding: 1rem; margin: 1.5rem 0; border-radius: 4px; }
        .tax-benefit-info h4 { margin: 0 0 0.5rem 0; color: #856404; font-size: 1rem; }
        .tax-benefit-info p { margin: 0; color: #856404; font-size: 0.9rem; }
        .donate-button { width: 100%; padding: 1.2rem; background: linear-gradient(135deg, #0077b6 0%, #005f8d 100%); color: white; border: none; border-radius: 8px; font-size: 1.2rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-family: 'Work Sans', sans-serif; }
        .donate-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,0.4); }
        .donate-button:disabled { background: #6c757d; cursor: not-allowed; transform: none; }
        .security-badge { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; color: #6c757d; font-size: 0.9rem; }
        .impact-info { background: #e8f4f8; padding: 2rem; border-radius: 12px; margin-bottom: 2rem; }
        .impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
        .impact-item { text-align: center; }
        .impact-item .icon { font-size: 2rem; margin-bottom: 0.5rem; }
        .impact-item h4 { color: #0077b6; margin: 0.5rem 0; font-size: 1.1rem; }
        .impact-item p { margin: 0; color: #6c757d; font-size: 0.9rem; }
        .payment-methods { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #dee2e6; }
        .payment-methods p { color: #6c757d; font-size: 0.9rem; margin-bottom: 0.5rem; }
        .payment-logos { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
        
        @media (max-width: 768px) {
            .donation-form-container { padding: 2rem 1.5rem; }
            .form-row { grid-template-columns: 1fr; }
            .amount-options { grid-template-columns: repeat(2, 1fr); }
        }