/* --- BEGIN donation-foreign.css (use exactly as provided) --- */
form#frgn-donationForm {
    background: #ffffff;
    padding: 40px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #34495e;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
    border: 1px solid #f0f0f0;
}
form#frgn-donationForm h3 {
    margin-bottom: 35px;
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.2;
}
form#frgn-donationForm strong {
    display: block;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #4a6781;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}
.frgn-amount-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.frgn-amount-options-grid label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fcfcfc;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}
.frgn-amount-options-grid label:hover {
    border-color: #a0a0a0;
    background-color: #f0f0f0;
}
.frgn-amount-options-grid input[type="radio"] {
    display: none;
}
.frgn-amount-options-grid label.active {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}
.frgn-amount-options-grid #frgn-otherAmountInput {
    grid-column: span 2;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    text-align: center;
}
.frgn-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 5px;
}
.frgn-form-field {
    flex: 1;
    min-width: calc(50% - 10px);
    margin-bottom: 15px;
}
.frgn-form-field.full-width {
    flex: none;
    width: 100%;
    min-width: 100%;
}
form#frgn-donationForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 15px;
    line-height: 1.4;
}
form#frgn-donationForm input[type="text"],
form#frgn-donationForm input[type="email"],
form#frgn-donationForm input[type="number"],
form#frgn-donationForm input[type="date"],
form#frgn-donationForm select {
    padding: 14px 18px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    background-color: #fcfcfc;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
form#frgn-donationForm input::placeholder { color: #a0a0a0; font-weight: 400; }
form#frgn-donationForm input[type="text"]:focus,
form#frgn-donationForm input[type="email"]:focus,
form#frgn-donationForm input[type="number"]:focus,
form#frgn-donationForm input[type="date"]:focus,
form#frgn-donationForm select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
    background-color: #ffffff;
    outline: none;
}
form#frgn-donationForm select { background-color: #fcfcfc; padding-right: 40px; }
/* ... rest of CSS same as provided earlier ... */
/* You can paste the remaining CSS rules from your earlier code verbatim here */
