 .form-container {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .formheader {
            text-align: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #2c5234;
            padding-bottom: 15px;
        }
        
        .formheader h1 {
            color: #2c5234;
            margin: 0;
            font-size: 24px;
            font-weight: bold;
        }
        
        .formheader h2 {
            color: #5a7c65;
            margin: 5px 0 0 0;
            font-size: 18px;
            font-weight: normal;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }
        
        .form-group label {
            display: block;
            font-weight: bold;
            color: #2c5234;
            margin-bottom: 3px;
            font-size: 14px;
        }
        
        .form-group input[type="text"], 
        .form-group input[type="email"], 
        .form-group input[type="tel"], 
        .form-group input[type="number"],
        .form-group input[type="date"],
        .form-group input[type="url"],
        .form-group textarea, 
        .form-group select {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
            box-sizing: border-box;
        }
        
        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group input[type="tel"]:focus,
        .form-group input[type="number"]:focus,
        .form-group input[type="date"]:focus,
        .form-group input[type="url"]:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2c5234;
            outline: none;
            box-shadow: 0 0 5px rgba(44, 82, 52, 0.3);
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: auto;
        }
        
        .method-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 5px;
        }
        
        .method-group label {
            display: flex;
            align-items: center;
            font-weight: normal;
            gap: 5px;
        }
        
        .description-section {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 6px;
            margin: 20px 0;
            border-left: 4px solid #2c5234;
        }
        
        .description-section h3 {
            color: #2c5234;
            margin-top: 0;
            margin-bottom: 10px;
        }
        
        .description-textarea {
            height: 200px;
        }
        
        .footer-info {
            background: #e9ecef;
            padding: 15px;
            border-radius: 6px;
            margin: 20px 0;
            font-size: 13px;
            line-height: 1.5;
        }
        
        .footer-info p {
            margin: 8px 0;
        }
        
        .signature-section {
            border: 2px solid #2c5234;
            padding: 20px;
            border-radius: 6px;
            margin: 20px 0;
            background: #f8f9fa;
        }
        
        .signature-row {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }
        
        .signature-row .form-group {
            flex: 1;
        }
        
        .submit-section {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background: #2c5234;
            border-radius: 6px;
            color: white;
        }
        
        .submit-section h3 {
            margin: 0 0 10px 0;
            color: white;
        }
        
        .submit-section p {
            margin: 5px 0;
            font-size: 14px;
            color:#fff;
        }
        
        .submit-btn {
            background: #5a7c65;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 15px;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #4a6b55;
        }
        
        .page-number {
            text-align: center;
            color: #666;
            font-size: 12px;
            margin-top: 20px;
        }
        
        
        /* Membership Types */
.membership-types {
    margin-bottom: 25px;
}

.membership-option {
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #4a7c59;
}

.membership-option input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.membership-option label {
    font-weight: bold;
    color: #2c5530;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
}

.membership-option .note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    display: block;
    margin-top: 5px;
    margin-left: 25px;
}

/* Disclaimer */
.disclaimer {
    background-color: #fffbf0;
    border: 1px solid #e6d7a3;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9em;
    color: #8a6914;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.full-width {
    flex: 2;
    min-width: 300px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c5530;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="url"],
.item-row input[type="text"],
.item-row input[type="number"],
.signature-section input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 5px rgba(74, 124, 89, 0.3);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option input[type="radio"] {
    transform: scale(1.2);
}

.payment-option label {
    font-weight: bold;
    color: #2c5530;
    cursor: pointer;
}

.payment-option input[type="text"] {
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 120px;
}

/* Credit Card Info */
.credit-card-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #e9ecef;
}

/* Billing Address */
.billing-address {
    background-color: #f0f8f0;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #d4edda;
}

/* Member Benefits */
.member-benefits {
    background-color: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.member-benefits ul {
    list-style-type: none;
    padding-left: 0;
}

.member-benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #2c5530;
}

.member-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 1.2em;
}

/* Volunteer Opportunities */
.volunteer-opportunities {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.volunteer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.volunteer-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background-color: white;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.volunteer-option input[type="checkbox"] {
    transform: scale(1.2);
}

.volunteer-option label {
    cursor: pointer;
    color: #2c5530;
    font-weight: 500;
}

.volunteer-option:hover {
    background-color: #f8f9fa;
    border-color: #4a7c59;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.form-actions button {
    padding: 12px 30px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions button[type="submit"] {
    background-color: #2c5530;
    color: white;
}

.form-actions button[type="submit"]:hover {
    background-color: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-actions button[type="reset"] {
    background-color: #6c757d;
    color: white;
}

.form-actions button[type="reset"]:hover {
    background-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
        
        
        
        .header h2 {
            color: #5a7c65;
            margin: 8px 0 0 0;
            font-size: 20px;
            font-weight: normal;
        }
        
        .contact-info {
            background: #e8f4f0;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 25px;
            border-left: 4px solid #2c5234;
        }
        
        .contact-info p {
            margin: 5px 0;
            font-size: 14px;
            color: #2c5234;
            font-weight: 500;
        }
        
        .membership-options {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            border: 2px solid #e9ecef;
        }
        
        .membership-options h3 {
            color: #2c5234;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 18px;
            border-bottom: 2px solid #2c5234;
            padding-bottom: 8px;
        }
        
        .membership-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .membership-row:last-child {
            border-bottom: none;
        }
        
        .membership-row label {
            flex: 1;
            font-weight: 500;
            color: #495057;
            cursor: pointer;
        }
        
        .membership-row input[type="radio"] {
            margin-right: 8px;
            transform: scale(1.2);
        }
        
        .price {
            font-weight: bold;
            color: #2c5234;
            font-size: 16px;
            min-width: 80px;
            text-align: right;
        }
        
        .life-memberships {
            background: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }
        
        .life-memberships h4 {
            color: #856404;
            margin: 0 0 10px 0;
            font-size: 16px;
        }
        
        .disclaimer {
            background: #d1ecf1;
            padding: 15px;
            border-radius: 6px;
            font-size: 13px;
            line-height: 1.5;
            color: #0c5460;
            margin: 20px 0;
            border-left: 4px solid #17a2b8;
        }
        
        .form-section {
            margin: 25px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #2c5234;
        }
        
        .form-section h3 {
            color: #2c5234;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .payment-section {
            background: #e8f4f0;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 2px solid #2c5234;
        }
        
        .payment-methods {
            display: flex;
            gap: 20px;
            margin: 15px 0;
            flex-wrap: wrap;
        }
        
        .payment-methods label {
            display: flex;
            align-items: center;
            font-weight: normal;
            gap: 8px;
            cursor: pointer;
            background: white;
            padding: 8px 12px;
            border-radius: 6px;
            border: 2px solid #e9ecef;
            transition: all 0.3s;
        }
        
        .payment-methods label:hover {
            border-color: #2c5234;
            background: #f8f9fa;
        }
        
        .payment-methods input[type="radio"] {
            transform: scale(1.2);
        }
        
        .credit-card-fields {
            display: none;
            margin-top: 15px;
            padding: 15px;
            background: white;
            border-radius: 6px;
            border: 1px solid #e9ecef;
        }
        
        .benefits-section {
            background: #d4edda;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 2px solid #28a745;
        }
        
        .benefits-section h3 {
            color: #155724;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 8px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 0;
            color: #155724;
        }
        
        .benefit-item::before {
            content: "✓";
            background: #28a745;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        .volunteer-section {
            background: #fff3cd;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 2px solid #ffc107;
        }
        
        .volunteer-section h3 {
            color: #856404;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .volunteer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }
        
        .volunteer-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px;
            background: white;
            border-radius: 6px;
            border: 1px solid #e9ecef;
        }
        
        .volunteer-item input[type="checkbox"] {
            transform: scale(1.3);
        }
        
        .volunteer-item label {
            margin: 0;
            font-weight: normal;
            cursor: pointer;
            flex: 1;
        }
        
        .submit-section {
            text-align: center;
            margin-top: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #2c5234, #5a7c65);
            border-radius: 10px;
            color: white;
        }
        
        .submit-btn {
            background: #28a745;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }
        
        .submit-btn:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }
        
        .selected-membership {
            background: #d4edda;
            border: 2px solid #28a745;
            border-radius: 6px;
            padding: 15px;
            margin: 15px 0;
            text-align: center;
        }
        
        .selected-membership h4 {
            color: #155724;
            margin: 0 0 5px 0;
        }
        
        .selected-price {
            font-size: 24px;
            font-weight: bold;
            color: #28a745;
        }
        
        
        .donationheader {
            background: linear-gradient(135deg, #1a3f1d 0%, #2c5530 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .donationheader::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        .donationheader h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        .donationheader .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .tax-id {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-top: 15px;
            font-size: 0.9em;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 1;
        }

        #donationForm .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group.half-width {
            grid-column: span 1;
        }

        .items-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            border: 2px dashed #4a7c59;
        }

        .items-section h3 {
            color: #2c5530;
            margin-bottom: 20px;
            font-size: 1.3em;
            text-align: center;
        }

        .items-header {
            display: grid;
            grid-template-columns: 1fr 80px 120px;
            gap: 15px;
            margin-bottom: 15px;
            font-weight: 600;
            color: #2c5530;
            text-transform: uppercase;
            font-size: 0.9em;
        }

        .item-row {
            display: grid;
            grid-template-columns: 1fr 80px 120px;
            gap: 15px;
            margin-bottom: 15px;
            align-items: center;
        }

        .item-row input[type="number"] {
            text-align: center;
        }

        .item-row input[type="text"] {
            border-radius: 6px;
        }

        .add-item-btn {
            background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9em;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .add-item-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
        }

        .total-section {
            background: linear-gradient(135deg, #2c5530 0%, #1a3f1d 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }

        .total-value {
            font-size: 2em;
            font-weight: bold;
            margin-top: 10px;
        }

        .signature-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .signature-box {
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            background: white;
            text-align: center;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
        }

        .submit-btn {
            background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
        }

        .print-btn {
            background: #6c757d;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .print-btn:hover {
            background: #5a6268;
        }

        .button-group {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        .expenseheader {
            background: linear-gradient(135deg, #2d5016 0%, #1a472a 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .expenseheader::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
        }

        .expenseheader::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(139,69,19,0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 3s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, -20px) rotate(180deg); }
        }

        .logo-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

       .expenseheader .logo {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
            color: #2d5016;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .expenseheader h1 {
            font-size: 2.2em;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        .expenseheader .subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .revision {
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 15px;
            font-size: 0.85em;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 1;
        }

        .form-container {
            padding: 40px;
        }

        .form-section {
            margin-bottom: 35px;
            padding: 25px;
            border-radius: 12px;
            background: #f8f9fa;
            border-left: 5px solid #2d5016;
        }

        .section-title {
            font-size: 1.1em;
            font-weight: 600;
            color: #2d5016;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        .expenses-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .expenses-table th {
            background: linear-gradient(135deg, #2d5016 0%, #1a472a 100%);
            color: white;
            padding: 15px 12px;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85em;
            letter-spacing: 0.5px;
        }

        .expenses-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
        }

        .expenses-table input {
            border: 1px solid #ddd;
            padding: 8px;
            border-radius: 4px;
            width: 100%;
        }

        .expenses-table tr:hover {
            background: #f8f9fa;
        }

        .add-expense-btn {
            background: linear-gradient(135deg, #2d5016 0%, #1a472a 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9em;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 10px 0;
        }

        .add-expense-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
        }

        .total-section {
            background: linear-gradient(135deg, #2d5016 0%, #1a472a 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .total-section::before {
            content: '$';
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 6em;
            opacity: 0.1;
            font-weight: bold;
        }

        .total-value {
            font-size: 2.5em;
            font-weight: bold;
            margin-top: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .funding-source {
            background: #fff3cd;
            border: 2px solid #ffeaa7;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
        }

        .funding-source h3 {
            color: #856404;
            margin-bottom: 15px;
            font-size: 1.1em;
        }

        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background: white;
            border-radius: 8px;
            border: 2px solid #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkbox-item:hover {
            border-color: #2d5016;
            box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
        }

        .checkbox-item input[type="checkbox"] {
            width: auto;
            margin: 0;
        }

        .approval-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            background: #e8f5e8;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
        }

        .signature-box {
            border: 2px dashed #2d5016;
            border-radius: 8px;
            padding: 40px 20px;
            text-align: center;
            background: white;
            color: #666;
            font-style: italic;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .signature-box:hover {
            border-style: solid;
            background: #f0fff0;
        }

        .treasurer-section {
            background: #f1f3f4;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #dadce0;
        }

        .treasurer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #2d5016 0%, #1a472a 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 10px;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(45, 80, 22, 0.3);
        }

        .button-group {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .print-btn, .save-btn {
            background: #6c757d;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .print-btn:hover, .save-btn:hover {
            background: #5a6268;
            transform: translateY(-2px);
        }
        
        
        
.contact-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #4a7c59;
}

.contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
}

.contact-info strong {
    color: #2c5530;
}
.event-details {
    background-color: #e8f5e8;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid #4a7c59;
}

.event-details h3 {
    color: #2c5530;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.event-details .venue {
    font-size: 1.1em;
    font-weight: bold;
    color: #2c5530;
    margin: 10px 0;
}

.event-details .address {
    color: #666;
    margin: 5px 0;
}

.booth-selection {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid #4a7c59;
}

.booth-selection h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-align:center;
}

.booth-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
}

.booth-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booth-option:hover {
    border-color: #4a7c59;
    background-color: #f8f9fa;
}

.booth-option input[type="radio"] {
    transform: scale(1.3);
}

.booth-option label {
    font-weight: bold;
    color: #2c5530;
    cursor: pointer;
    font-size: 1.1em;
    margin-bottom:0;
}

.booth-option.selected {
    border-color: #4a7c59;
    background-color: #e8f5e8;
}

.important-notes {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.important-notes h4 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.important-notes ul {
    list-style-type: none;
    padding-left: 0;
}

.important-notes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #856404;
    line-height: 1.5;
}

.important-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d63384;
    font-weight: bold;
    font-size: 1.2em;
    top: 50%;
    transform: translateY(-50%);
}

.signature-section {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #ddd;
}

.signature-row {
    display: flex;
    gap: 20px;
    align-items: end;
}

.signature-group {
    flex: 1;
    min-width:310px;
}

.signature-group.small {
    flex: 0.4;
}

.signature-line {
    border-bottom: 2px solid #333;
    min-height: 40px;
    margin-top: 5px;
    position: relative;
}

.digital-signature {
    background-color: white;
    border: 2px dashed #4a7c59;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-signature:hover {
    background-color: #f0fff4;
    border-color: #2c5530;
}

.digital-signature.signed {
    background-color: #f0fff4;
    border-color: #28a745;
    border-style: solid;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.form-actions button {
    padding: 15px 30px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions button[type="submit"] {
    background-color: #2c5530;
    color: white;
}

.form-actions button[type="submit"]:hover {
    background-color: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-actions button[type="reset"] {
    background-color: #6c757d;
    color: white;
}

.form-actions button[type="reset"]:hover {
    background-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #2c5530;
    padding-bottom: 20px;
}

.form-header h1 {
    color: #2c5530;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-header h2 {
    color: #4a7c59;
    font-size: 1.4em;
    margin-bottom: 15px;
}


        
        
        

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .approval-section {
                grid-template-columns: 1fr;
            }
            
            .treasurer-grid {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 1.8em;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .button-group {
                flex-direction: column;
            }
        }

        .error {
            border-color: #dc3545 !important;
            background-color: #fff5f5 !important;
        }

        .success {
            border-color: #28a745 !important;
            background-color: #f0fff4 !important;
        }

        .note {
            background: #d1ecf1;
            border: 1px solid #bee5eb;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            color: #0c5460;
            font-size: 0.9em;
        }
        
        
        
        
        
        
        

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .items-header,
            .item-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .signature-section {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .form-container {
                padding: 20px;
            }
        }

        .error {
            border-color: #dc3545 !important;
            background-color: #fff5f5 !important;
        }

        .success {
            border-color: #28a745 !important;
            background-color: #f0fff4 !important;
        }
        
        
        
        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
            }
            
            .payment-methods {
                flex-direction: column;
            }
            
            .benefits-list {
                grid-template-columns: 1fr;
            }
            
            .volunteer-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                flex-direction: column;
            }
            
            .signature-row {
                flex-direction: column;
            }
            
            .method-group {
                flex-direction: column;
                gap: 8px;
            }
            
        } 
        
        
        
        .sci-sponsorship-form * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .sci-sponsorship-form {
            
            background-color: #f5f5f5;
            padding: 20px;
        }
        
        .sci-sponsorship-form .container {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .sci-sponsorship-form h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 28px;
            line-height: normal;
        }
        
        .sci-sponsorship-form .subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
            font-size: 12px;
            font-style: italic;
        }
        
        .sci-sponsorship-form .form-section {
            margin-bottom: 30px;
        }
        
        .sci-sponsorship-form .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: initial;
        }
        
        .sci-sponsorship-form .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: initial;
        }
        
        .sci-sponsorship-form .form-group.full {
            width: 100%;
            margin-bottom: 15px;
        }
        
        .sci-sponsorship-form label {
            font-weight: bold;
            margin-bottom: 5px;
            color: #333;
            font-size: 14px;
        }
        
        .sci-sponsorship-form input[type="text"],
        .sci-sponsorship-form input[type="email"],
        .sci-sponsorship-form input[type="tel"] {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            width: 100%;
        }
        
        .sci-sponsorship-form input[type="text"]:focus,
        .sci-sponsorship-form input[type="email"]:focus,
        .sci-sponsorship-form input[type="tel"]:focus {
            outline: none;
            border-color: #4CAF50;
        }
        
        .sci-sponsorship-form h2 {
            color: #2c3e50;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 18px;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 5px;
        }
        
        .sci-sponsorship-form .premium-section {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 2px solid #f1f1f1;
        }
        
        .sci-sponsorship-form .option-group {
            margin-bottom: 15px;
        }
        
        .sci-sponsorship-form .option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 4px;
            margin-bottom: 8px;
        }
        
        .sci-sponsorship-form input[type="radio"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }
        
        .sci-sponsorship-form .option-label {
            flex: 1;
            font-size: 14px;
        }
        
        .sci-sponsorship-form .price {
            font-weight: bold;
            color: #4CAF50;
            font-size: 16px;
        }
        
        .sci-sponsorship-form .contact-info {
            background-color: #e3f2fd;
            padding: 15px;
            border-radius: 4px;
            margin-top: 10px;
            text-align: center;
            font-size: 14px;
        }
        
        .sci-sponsorship-form .contact-info strong {
            color: #1976d2;
        }
        
        .sci-sponsorship-form .rotating-section {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #f1f1f1;
        }
        
        .sci-sponsorship-form .donation-box {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            border: 2px solid #f1f1f1;
        }
        .sci-sponsorship-form .donation-box{
            display:flex;
            justify-content:space-between;
        }
        .sci-sponsorship-form .donation-box h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .sci-sponsorship-form .donation-item {
            margin-bottom: 8px;
            padding-left: 15px;
        }
        
        .sci-sponsorship-form .submit-btn {
            background-color: #2c5530;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: block;
            margin: 30px auto 0;
            transition: background-color 0.3s;
        }
        
        .sci-sponsorship-form .submit-btn:hover {
            background-color:#1a3820;
        }
        
        @media (max-width: 600px) {
            .sci-sponsorship-form .container {
                padding: 20px;
            }
            
            .sci-sponsorship-form .form-row {
                flex-direction: column;
            }
        }
        
        
        
        
        
        
        
        
        
        