html, body {
    margin: 0;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark-teal: #1a2a3a;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --text-light-on-dark: #e5e7eb;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overscroll-behavior: contain;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Header Section */
.main-header {
    background: var(--bg-white);
    padding: 30px 20px 40px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.main-header .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.header-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: auto;
    white-space: nowrap;
}

.header-floating {
    display: none;
}

.brand-serve {
    color: var(--primary-color);
}

.brand-global {
    color: #FF8C42;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.main-nav .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0;
    border-radius: 4px;
    transition: color 0.2s ease;
    background: transparent;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    z-index: 25;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 1);
    outline: none;
}

.nav-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
}

.nav-toggle-icon span {
    display: block;
    height: 3px;
    background: var(--text-primary);
    border-radius: 999px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.nav-open {
    overflow: hidden;
}

@media (min-width: 1400px) {
    .main-header .container {
        max-width: 1400px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    padding: 60px 0 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Brand */
.brand {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
}

.main-header .brand {
    margin-bottom: 0;
    padding-top: 20px;
}

.brand-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px auto;
    display: block;
    background: transparent;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-header .brand-name {
    color: var(--text-secondary);
}

.global-text {
    color: #FF8C42;
}

.tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

.main-header .tagline {
    color: var(--text-secondary);
}

/* Hero Text */
.hero-text {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Form Container */
.form-container {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .form-container {
        padding: 56px;
        max-width: 900px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Form Styles */
.request-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-primary);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--bg-white);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}


.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--error-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.header-floating {
    display: none;
}

@media (max-width: 900px) {
    .header-top {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        position: absolute;
        top: 85px;
        right: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.97);
        border-radius: 16px;
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        padding: 16px 0;
        gap: 0;
        display: none;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        border: 1px solid rgba(17, 24, 39, 0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        align-self: flex-end;
    }

    .nav-link {
        width: 100%;
        padding: 14px 24px;
        text-align: left;
        font-size: 1rem;
        background: transparent;
        border-radius: 0;
    }

    .nav-link + .nav-link {
        border-top: 1px solid rgba(17, 24, 39, 0.08);
    }

    .nav-link:hover,
    .nav-link:focus-visible {
        background: rgba(37, 99, 235, 0.08);
        color: var(--primary-color);
    }

    .nav-link.active {
        background: rgba(37, 99, 235, 0.12);
        color: var(--primary-color);
    }
}

@media (min-width: 1024px) {
    .main-header {
        overflow: hidden;
    }

    .header-top {
        flex-direction: row;
        align-items: center;
    }

    .nav-toggle {
        display: none;
    }
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.error-message {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--error-color);
    min-height: 20px;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 1.5;
    color: var(--text-primary);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    font-size: 0.875rem;
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.form-hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#credit-success:target .form-message,
#supplies-success:target .form-message {
    display: block;
}

#credit-success,
#supplies-success {
    scroll-margin-top: 120px;
}

#credit-success,
#supplies-success {
    scroll-margin-top: 120px;
}

/* Info Section */
.info-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .info-section {
        padding: 30px;
    }

    .donation-section {
        padding: 50px;
    }
}

.info-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: left;
    font-weight: 400;
}

.info-text strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Donation Section */
.donation-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.donation-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.donation-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.donation-method {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.donation-method:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.15);
    transform: translateY(-2px);
}

.donation-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    color: var(--primary-color);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.donation-icon svg {
    width: 48px;
    height: 48px;
}

.donation-method-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.donation-method-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.donation-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.donation-link {
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 8px;
    transition: var(--transition);
    word-break: break-all;
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

.donation-link:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-dark);
    border-color: var(--primary-color);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.copy-btn.copied {
    background: var(--success-color);
}

.copy-btn.copied:hover {
    background: #43a047;
}

.copy-icon-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.donation-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: normal;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.donation-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.zelle-email-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
}

.zelle-email-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.zelle-email-value {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

.donate-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.donate-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.donate-btn:active {
    transform: translateY(0);
}

.donate-btn svg {
    width: 20px;
    height: 20px;
}

.donation-instructions {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.6;
    text-align: center;
}

.bank-details {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
}

.bank-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.bank-info-item:last-child {
    border-bottom: none;
}

.bank-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bank-value {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    text-align: right;
}

/* Donation Modal */
.donation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.donation-modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.donation-form {
    padding: 32px;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 1;
}

.amount-input-wrapper input {
    padding-left: 40px;
    font-size: 1.5rem;
    font-weight: 600;
}

.quick-amounts {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.quick-amount-btn {
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.quick-amount-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.payment-method-selection {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.payment-method-selection h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.payment-option span {
    font-weight: 500;
    color: var(--text-primary);
}

.payment-fields {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.submit-donation-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
}

.submit-donation-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.submit-donation-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .donation-modal-content {
        max-width: 100%;
        border-radius: 12px;
    }

    .modal-header {
        padding: 20px;
    }

    .donation-form {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .main-header {
        padding: 30px 15px;
    }

    .brand-logo {
        max-width: 500px;
        margin-bottom: 25px;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .donation-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-text {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }
    
    .contact-separator {
        display: none;
    }
    
    .contact-email,
    .contact-phone {
        font-size: 1rem;
    }
    
    .main-header {
        padding: 25px 10px;
    }

    .brand-logo {
        max-width: 400px;
        margin-bottom: 20px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .form-container {
        padding: 25px 18px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }

    .donation-section {
        padding: 25px 20px;
    }

    .donation-title {
        font-size: 1.5rem;
    }

    .donation-subtitle {
        font-size: 1rem;
    }

    .donation-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .donation-method {
        padding: 20px;
    }

    .donation-method-title {
        font-size: 1.3rem;
    }

    .donation-email {
        flex-direction: column;
    }

    .zelle-email-display {
        padding: 12px;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .donate-btn {
        padding: 14px 20px;
        font-size: 0.875rem;
    }

    .bank-details {
        padding: 16px;
    }

    .bank-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .bank-value {
        text-align: left;
    }

    .main-nav {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        margin-bottom: 20px;
    }

    .main-header .brand {
        padding-top: 0;
    }
}

/* Donation Link Section */
.donation-link-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.donation-link-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: var(--transition);
}

.donation-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.donation-link-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.donation-link-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.donation-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.donation-link-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Donations Page Styles */
.donations-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
}

.donations-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.donations-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.donations-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.page-divider-top,
.page-divider-bottom {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0;
}

.donation-main-section .page-divider-top,
.donation-main-section .page-divider-bottom {
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.donation-main-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.supplies-request-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.about-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 30px 40px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-email,
.contact-phone {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    word-break: break-word;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.contact-email:hover,
.contact-phone:hover {
    color: var(--primary-color-dark);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.contact-separator {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    opacity: 0.4;
}

.donations-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.donations-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.donation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.donation-call-to-action {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.donation-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donation-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.donation-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.donation-item-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.donation-thanks {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.donation-heart {
    font-size: 2rem;
    text-align: center;
    margin-top: 20px;
}

/* Footer Styles */
.main-footer {
    background: var(--text-primary);
    color: var(--text-light-on-dark);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light-on-dark);
}

.footer-contact {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.donation-method-card {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.donation-method-content {
    padding: 50px 40px;
}

.page-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0;
}

.donation-method-card:first-child .page-separator:first-child,
.donation-method-card:last-child .page-separator:last-child {
    display: none;
}

.impact-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.impact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.impact-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .donations-hero {
        padding: 60px 0;
    }

    .donations-hero-title {
        font-size: 2rem;
    }

    .donations-hero-subtitle {
        font-size: 1rem;
    }

    .donations-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .donation-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }

    .donation-item {
        padding: 15px;
    }

    .donation-emoji {
        font-size: 2rem;
    }

    .donation-item-text {
        font-size: 1rem;
    }

    .donation-call-to-action {
        font-size: 1.125rem;
    }

    .donation-thanks {
        font-size: 1rem;
    }

    .donation-method-content {
        padding: 40px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }

    .impact-section {
        padding: 60px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.donation-payment-options {
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.donation-button {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donation-button:hover,
.donation-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.donation-payment-zelle {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.contact-socials {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-socials .social-link,
.footer-socials .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(4, 20, 45, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-socials .social-link:hover,
.contact-socials .social-link:focus,
.footer-socials .social-link:hover,
.footer-socials .social-link:focus {
    transform: translateY(-2px);
    background: rgba(4, 20, 45, 0.15);
}

.social-icon {
    width: 22px;
    height: 22px;
    fill: var(--text-primary);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.social-label {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.contact-feedback {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(13, 45, 88, 0.1);
}

.feedback-title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.feedback-description {
    margin-bottom: 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(5, 22, 51, 0.15);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(4, 20, 45, 0.12);
    outline: none;
}

.feedback-form button {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-feedback {
        margin-top: 30px;
        padding: 20px;
    }
}

