.payments-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.payments-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.adoption-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.adoption-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.adoption-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #333;
}

.fee-info {
    margin-bottom: 25px;
    padding: 15px;
    background-color: white;
    border-radius: 4px;
}

.fee-info p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

.fee-label {
    font-weight: 600;
    color: #333;
}

.fee-amount {
    color: #001f3f;
    font-weight: 700;
}

.included-list {
    list-style-position: inside;
    padding-left: 0;
}

.included-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.donation-appeal {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #e8f5e9;
    border-left: 5px solid #4caf50;
    border-radius: 4px;
}

.donation-appeal h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.donation-appeal p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.donation-section {
    padding: 40px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
}

.donation-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.donation-section > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.donation-info {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.donation-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.donation-info p:last-child {
    margin-bottom: 0;
}

.custom-donation {
    margin-top: 30px;
    padding: 25px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.custom-donation label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.donation-input-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.currency-symbol {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

#donationAmount {
    flex: 1;
    max-width: 200px;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

#donationAmount:focus {
    outline: none;
    border-color: #001f3f;
}

.paypal-button {
    padding: 12px 30px;
    background-color: #001f3f;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.paypal-button:hover {
    background-color: #003366;
}

#paypalContainer {
    margin-top: 20px;
}

.adoption-form {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.adoption-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.pet-name-input {
    width: 100%;
    max-width: 300px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.pet-name-input:focus {
    outline: none;
    border-color: #001f3f;
}

.fee-dropdown {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.fee-dropdown:focus {
    outline: none;
    border-color: #001f3f;
}

.adoption-paypal-btn {
    padding: 12px 30px;
    background-color: #001f3f;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.adoption-paypal-btn:hover {
    background-color: #003366;
}

.adoption-paypal-btn:active {
    background-color: #001428;
}

.venmo-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f0f8ff;
    border-left: 5px solid #001f3f;
    border-radius: 4px;
}

.venmo-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.venmo-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.venmo-section p:last-child {
    margin-bottom: 0;
}

.venmo-info {
    font-size: 18px;
    font-weight: 600;
    color: #001f3f;
}

@media (max-width: 768px) {
    .payments-container {
        padding: 30px 20px;
    }

    .payments-container h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .adoption-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .adoption-section h2 {
        font-size: 22px;
    }

    .donation-section {
        padding: 20px;
    }

    .custom-donation {
        padding: 15px;
    }

    .donation-input-group {
        flex-direction: column;
        align-items: flex-start;
    }

    #donationAmount {
        max-width: 100%;
        width: 100%;
    }

    .pet-name-input {
        max-width: 100%;
    }

    .fee-dropdown {
        max-width: 100%;
    }
}
