@import url('fonts-local.css');

body.foundation-donate-info-page {
    background: #f3f4f6;
    min-height: 100vh;
    font-family: 'Prompt', 'Sarabun', sans-serif;
}

.fdi-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 26px 18px 56px;
}

.fdi-back {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    margin-bottom: 14px;
}

.fdi-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    padding: 22px;
}

.fdi-top {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.fdi-logo-wrap {
    width: 150px;
    height: 150px;
    border-radius: 14px;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    overflow: hidden;
}

.fdi-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fdi-head h1 {
    margin: 0 0 8px;
    color: #1f2937;
    font-size: 2rem;
}

.fdi-head p {
    margin: 0;
    color: #475569;
    line-height: 1.55;
}

.fdi-bank {
    border: 2px solid #597D57;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

.fdi-bank-head {
    background: #597D57;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fdi-bank-head strong {
    font-size: 1.25rem;
}

.fdi-bank-head span {
    font-size: 0.95rem;
    opacity: 0.95;
}

.fdi-bank-body {
    background: #fff;
    padding: 14px 16px;
}

.fdi-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
}

.fdi-row:last-child {
    border-bottom: none;
}

.fdi-label {
    color: #475569;
    font-weight: 600;
}

.fdi-value {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
}

.fdi-contact {
    text-align: center;
    margin-bottom: 18px;
}

.fdi-contact h2 {
    margin: 0 0 4px;
    font-size: 1.6rem;
    color: #1f2937;
}

.fdi-contact p {
    margin: 0;
    color: #374151;
    font-size: 1.45rem;
}

.fdi-donate-cta {
    margin-top: 8px;
    padding: 20px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef6ee 0%, #f8fafc 100%);
    border: 1px solid #d7e6d6;
    text-align: center;
}

.fdi-donate-cta h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    color: #1f2937;
}

.fdi-donate-cta p {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.5;
}

.fdi-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #f0d05c;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(240, 208, 92, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fdi-donate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(240, 208, 92, 0.55);
}

.fdi-donate-note {
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 720px) {
    .fdi-top {
        grid-template-columns: 1fr;
    }
    .fdi-logo-wrap {
        width: 120px;
        height: 120px;
    }
    .fdi-contact p {
        font-size: 1.2rem;
    }
}
