/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #wrapper
        {
            display: flex;
            width: 100%;
            max-width: 1140px;
            margin: auto;
        }

        .secureBanner{
            position: absolute;
            background: grey;
            width: 100%;
            padding: 20px;
            max-width: 1140px;
        }
        #orgInfo
        {
            padding: 75px 24px;
            margin-top: 100px;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;            
        }
        body div#content
        {
            padding: 20px !important;
            margin-top: 100px;
        }
        /* Form Container */
        .donation-form {
            max-width: 800px;
            margin: 30px auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* Section Styling */
        .section {
            padding: 25px 30px;
            border-bottom: 1px solid #eaeaea;
        }

        .section:last-of-type {
            border-bottom: none;
        }

        .section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
            padding-left: 15px;
        }

        .section h3::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #2e86c1;
            border-radius: 2px;
        }

        /* Field Styling */
        .field {
            margin-bottom: 20px;
        }

        .field label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
            font-size: 14px;
        }

        .required-star {
            color: #e74c3c;
        }

        /* Input Fields */
        .field input[type="text"],
        .field input[type="email"],
        .field input[type="tel"],
        .field input[type="number"],
        .field select,
        .field textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d8e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: white;
            font-family: inherit;
        }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: #a0a0a0;
        }

        .field textarea {
            min-height: 100px;
            resize: vertical;
        }

        /* Select Styling */
        .field select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            padding-right: 45px;
        }

        /* Radio and Checkbox Styling */
        .field.radio,
        .field.checkbox {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .field.radio input,
        .field.checkbox input {
            position: absolute;
            /* opacity: 0; */
            cursor: pointer;
        }

        .field.radio label,
        .field.checkbox label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            margin-bottom: 0;
            font-weight: normal;
            position: relative;
            padding-left: 30px;
        }

        .donation-form .field input, .donation-form .field select, .donation-form .field textarea, .donation-form #card-element, .donation-form #paypal-button-container {
    padding: 15px !important;
    max-width: 100% !important;
    width: 96%;
}


        /* Other Amount Field */
        .other-amount {
            margin-top: 10px;
            padding-left: 30px;
            display: none;
        }

        .donation-form .field.radio input, .donation-form .field.checkbox input
        {
            margin-left: -22px !important;
            margin-top: 3px !important;
        }

        /* Show other amount when other option is selected */
        .other-option input:checked ~ .other-amount {
            display: block;
        }

        /* Payment Section */
        #stripe-cc-fields {
            margin-top: 20px;
        }

        #card-element {
            border: 1px solid #d1d8e0;
            border-radius: 8px;
            padding: 15px;
            background: #f8f9fa;
            min-height: 60px;
            transition: all 0.3s ease;
        }

        #card-element:focus-within {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        #card-errors {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            min-height: 20px;
        }

        /* Button Styling */
        .btn-group {
            padding: 25px 30px;
            text-align: center;
            background: #f8f9fa;
        }

        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: #2e86c1;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            min-width: 200px;
        }

        .btn:hover {
            background: #1a5276;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn:active {
            transform: translateY(0);
        }

        /* Error States */
        .errors {
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 8px;
            margin: 15px;
            display: none;
        }

        .errors:not(.hidden) {
            display: block;
        }

        /* Hidden Elements */
        .hidden {
            display: none !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #wrapper
            {
                flex-direction: column;
            }
            body div#content
            {
                padding: 20px 0px !important;
            }
            #orgInfo {
                padding: 0px 24px;
                margin-top: 0px;
            }
            .secureBanner
            {
                background: grey;
                padding: 20px;
            }
            body {
                padding: 10px;
            }
            
            .section {
                padding: 20px;
            }
            
            .btn-group {
                padding: 20px;
            }
            
            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .section h3 {
                font-size: 18px;
            }
            
            .field input[type="text"],
            .field input[type="email"],
            .field input[type="tel"],
            .field input[type="number"],
            .field select,
            .field textarea {
                padding: 10px 12px;
                font-size: 16px;
            }
        }

        /* Custom styling for specific sections */
        .donation .field.radio:first-child {
            margin-top: 10px;
        }

        .recurring {
            background-color: #f8f9fa;
        }

        .billing-address .field:not(:last-child) {
            margin-bottom: 15px;
        }

        .custom-fields {
            background-color: #f8f9fa;
        }

        .comment textarea {
            min-height: 120px;
        }

        .payment .field.radio {
            display: inline-block;
            width: 48%;
            margin-right: 2%;
        }

        /* Focus states for accessibility */
        .field.radio input:focus + label::before,
        .field.checkbox input:focus + label::before {
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
        }