.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header-title {
    color: #00a651;
    padding: 10px;
    /* border: 2px solid #00a651; */
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.header-subtitle {
    background-color: #00a651;
    color: white;
    padding: 10px;
    text-transform: uppercase;
}

.org-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.org-logo {
    width: 320px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-logo img {
    max-width: 100%;
    height: auto;
}

.org-details {
    flex: 1;
    min-width: 250px;
}

.org-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.donation-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.donation-table th,
.donation-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.donation-table th {
    background-color: #f5f5f5;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-option {
    margin-left: 30px;
    margin-bottom: 30px;
}

.bank-details {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.bank-details h3 {
    margin-bottom: 15px;
    color: #333;
}

.form-section {
    margin-bottom: 40px;
    padding: 25px;
    /* background-color: #f8f9fa; */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.form-group {
    /* margin-bottom: 24px; */
    margin-bottom: 15px;
    gap: 10px;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    color: #4a5568;
    background-color: white;
    transition: all 0.3s ease;
}

.form-group input:hover {
    border-color: #cbd5e0;
}

.form-group input:focus {
    outline: none;
    border-color: #00a651;
    box-shadow: 0 0 0 3px rgba(0,166,81,0.1);
    background-color: #ffffff;
}

.form-group input:disabled {
    background-color: #f7fafc;
    cursor: not-allowed;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group input[type="date"] {
    padding-right: 10px;
}

.form-group input[required] + label::after {
    content: "*";
    color: #e53e3e;
    margin-left: 4px;
}

.category-section {
    margin-bottom: 35px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.section-title {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #00a651;
    border-radius: 2px;
}

.or-separator {
    margin: 15px 0 15px 200px;
    font-weight: bold;
}

.cheque-section {
    margin-left: 20px;
}

.cheque-section .form-group label {
    min-width: 180px;
}

.submit-button {
    margin-top: 20px;
    margin-left: 200px;
    background-color: #00a651;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.submit-button:hover {
    background-color: #008d45;
}

@media screen and (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }
    
    .form-group label {
        min-width: 100%;
        margin-bottom: 5px;
    }
    
    .or-separator {
        margin-left: 0;
    }
    
    .cheque-section {
        margin-left: 0;
    }
    
    .submit-button {
        margin-left: 0;
        width: 100%;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .form-section {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input {
        padding: 10px 14px;
        font-size: 14px;
    }

    .section-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .form-section {
        padding: 15px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 16px;
    }
}

/* validation states */
.form-group input:invalid {
    border-color: #fc8181;
}

.form-group input:invalid:focus {
    border-color: #fc8181;
    box-shadow: 0 0 0 3px rgba(252,129,129,0.1);
}

.form-group input:valid {
    border-color: #68d391;
}

/* Input types specific styling */
.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Additional interactive states */
.form-group input:focus + label {
    color: #00a651;
}

.form-group:hover label {
    color: #00a651;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .org-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .org-logo {
        margin-bottom: 15px;
    }

    .donation-table {
        display: block;
        overflow-x: auto;
    }

    .form-group label {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .header-title {
        font-size: 20px;
    }

    .org-logo {
        width: 100px;
        height: 100px;
    }

    .bank-details {
        padding: 15px;
    }

    .form-group input {
        padding: 8px;
    }
}


/* /////////////////////////////////////////////////////////////// */

.payment-instructions {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.payment-method {
    margin-bottom: 30px;
}

.payment-method h3 {
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00a651;
}

.bank-details {
    margin-bottom: 20px;
}

.bank-details p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #4a5568;
}

.bank-details strong {
    color: #2d3748;
    font-weight: 600;
}

.steps-list {
    list-style-type: none;
    padding-left: 0;
}

.steps-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #4a5568;
}

.steps-list li:before {
    content: "•";
    color: #00a651;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.payment-note {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff8dc;
    border-left: 4px solid #ffd700;
    color: #696969;
    font-size: 14px;
}

.cheque-section {
    /* background-color: #f8f9fa; */
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.address-box {
    background-color: white;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .payment-instructions {
        padding: 20px;
    }
    
    .payment-method h3 {
        font-size: 16px;
    }
}


/* Simplified select styling */
.form-group select {
    flex: 1;
    min-height: 30px;
    border: 1px solid #999;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px;
    background-color: white;
    cursor: pointer;
    width: 100%;
}

.form-group select:focus {
    outline: none;
    border-color: #00a651;
}

.form-group select:hover {
    border-color: #666;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }
    
    .form-group label {
        min-width: 100%;
        margin-bottom: 5px;
    }
    
    .form-group select {
        width: 100%;
    }
}