.donate-flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 1.5rem;
}
.form-wrapper.left {
    flex: 1 1 500px;
    min-width: 350px;
    max-width: 600px;
}
.bank-transfer-box.right {
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 340px;
    margin-top: 0;
}
@media (max-width: 900px) {
    .donate-flex-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .form-wrapper.left, .bank-transfer-box.right {
        max-width: 100%;
        min-width: 0;
    }
}
/* ================================================================
   DDO SOMALIA DONATE PAGE - STYLES
   ================================================================ */

/* =========================
   TOP HEADER - DONATE PAGE
========================= */

.top-header-donate {
    background: #12961C;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    font-size: 0.9rem;
}

.top-header-donate .top-header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.top-header-donate .header-contact {
    display: flex;
    gap: 2rem;
}

.top-header-donate .header-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.top-header-donate .header-contact a:hover {
    color: #24B15E;
}

.top-header-donate .header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-header-donate .language-switch select {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

/* =========================
   NAVBAR - DONATE PAGE
========================= */

.navbar-donate {
    position: fixed;
    top: 3rem;
    width: 100%;
    z-index: 1000;
    background: white;
    padding: 0.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container-donate {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    gap: 2rem;
}

.nav-menu-donate {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu-donate a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu-donate a:hover,
.nav-menu-donate a.active {
    color: #24B15E;
}

.donate-btn-donate {
    background: #12961C;
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.donate-btn-donate:hover,
.donate-btn-donate.active {
    background: #24B15E;
}

.mobile-menu-toggle-donate {
    display: none;
    background: #12961C;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* =========================
   DONATE PAGE SECTIONS
========================= */

.donate-page {
    width: 100%;
}

.donate-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.donate-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%), 
                url('../images/ddo-bg-003.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: -8rem;
    padding-top: 8rem;
}

.donate-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 150, 28, 0.1);
    z-index: 0;
}

.donate-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    color: white;
    text-align: left;
    padding: 3rem 2rem;
}

.donate-hero-label {
    font-size: 0.9rem;
    color: #24B15E;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.donate-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.donate-hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Impact Showcase */
.donate-impact {
    padding: 5rem 2rem;
    background: white;
}

.donate-impact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.impact-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #12961C;
}

.impact-card.featured {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    border: 2px solid #12961C;
}

.impact-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #12961C;
    margin-bottom: 1.5rem;
}

.impact-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.impact-items li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.impact-items li i {
    position: absolute;
    left: 0;
    color: #12961C;
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #12961C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Donation Options */
.donate-options {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.donate-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.option-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.option-card.featured {
    border: 2px solid #12961C;
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
}

.option-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.option-icon {
    font-size: 2.5rem;
    color: #12961C;
    margin-bottom: 1rem;
}

.option-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.option-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-option {
    display: inline-block;
    background: #12961C;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-option:hover {
    background: #24B15E;
    transform: translateY(-3px);
}

/* Donation Form Section */
.donate-form-section {
    padding: 3rem 0.5rem 2rem 0.5rem;
    background: white;
}

.donate-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.form-wrapper {
    background: #f8f8f8;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}
.bank-transfer-box {
    background: #e6f7ea;
    border: 1.5px solid #12961C;
    border-radius: 8px;
    padding: 1.2rem 1rem 1rem 1rem;
    margin: 0 auto 1.5rem auto;
    max-width: 600px;
    box-shadow: 0 1px 6px rgba(18,150,28,0.07);
}
.bank-transfer-box h3 {
    margin-top: 0;
    color: #12961C;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.bank-transfer-box .bank-note {
    color: #555;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.form-section {
    margin-bottom: 1.2rem;
}

.form-section h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Amount Buttons */
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #12961C;
    background: #f0f8f5;
    color: #12961C;
}

.custom-amount {
    grid-column: span 1;
}

.custom-amount input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.custom-amount input:focus {
    outline: none;
    border-color: #12961C;
}

/* Donation Type */
.donation-type-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.radio-option:hover,
.checkbox-option:hover {
    background: #f0f8f5;
}

.radio-option input,
.checkbox-option input {
    cursor: pointer;
    margin-right: 1rem;
    margin-top: 0.25rem;
    accent-color: #12961C;
}

.radio-option span,
.checkbox-option span {
    font-size: 0.95rem;
    color: #333;
}

/* Program Selection */
.program-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Donor Information */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-row.checkboxes {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form-group {
    flex: 1 1 200px;
    min-width: 150px;
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.5rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #12961C;
    box-shadow: 0 0 0 3px rgba(18, 150, 28, 0.1);
}

/* Submit Button */
.donate-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.donate-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 150, 28, 0.3);
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Transparency Section */
.donate-transparency {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.donate-transparency h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.transparency-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.transparency-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.transparency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.transparency-icon {
    font-size: 2.5rem;
    color: #12961C;
    margin-bottom: 1rem;
}

.transparency-card h4 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.transparency-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Budget Chart */
.budget-chart {
    margin-top: 1.5rem;
}

.budget-item {
    margin-bottom: 1.5rem;
}

.budget-item span {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #12961C 0%, #24B15E 100%);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.transparency-link {
    display: inline-block;
    color: #12961C;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.transparency-link:hover {
    color: #24B15E;
}

/* Donor Benefits */
.donate-benefits {
    padding: 5rem 2rem;
    background: white;
}

.donate-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #12961C;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Section */
.donate-faq {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.donate-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #12961C;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #12961C;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Final CTA */
.donate-final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    color: white;
    text-align: center;
}

.donate-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.donate-final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-block;
    background: white;
    color: #12961C;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #f0f8f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px) {
    .top-header-donate {
        padding: 0.75rem 1rem;
    }

    .top-header-donate .top-header-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-container-donate {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
        height: auto;
    }

    .nav-container-donate .logo {
        width: 50px;
        height: 50px;
    }

    .mobile-menu-toggle-donate {
        display: block;
    }

    .donate-btn-donate {
        flex-basis: 100%;
        width: 100%;
        margin-top: 0.5rem;
    }

    .nav-menu-donate {
        display: none;
    }

    .nav-menu-donate.active {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .donate-hero {
        min-height: 50vh;
        background-attachment: scroll;
    }

    .donate-hero h1 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

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

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid,
    .options-grid,
    .transparency-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .donate-impact,
    .donate-options,
    .donate-form-section,
    .donate-transparency,
    .donate-benefits,
    .donate-faq,
    .donate-final-cta {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .donate-hero h1 {
        font-size: 1.5rem;
    }

    .donate-impact h2,
    .donate-options h2,
    .donate-form-section h2,
    .donate-transparency h2,
    .donate-benefits h2,
    .donate-faq h2,
    .donate-final-cta h2 {
        font-size: 1.8rem;
    }

    .impact-amount {
        font-size: 1.5rem;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

    .btn-option,
    .btn-cta-large {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .donate-submit-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .form-wrapper {
        padding: 1.5rem 1rem;
    }
}
/* =========================
   FORM VALIDATION & MESSAGES
========================= */

/* Form Message Display */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: none;
    animation: slideDown 0.3s ease;
}

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

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

/* Form Field Error States */
.form-control.error {
    border-color: #d32f2f !important;
    background-color: #ffebee;
}

.form-control.error:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Error Message Display */
.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    font-weight: 500;
    min-height: 1.2rem;
}

/* Loading State */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Submit Button Loading State */
.donate-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Donation Type Buttons */
.donation-type-selection {
    margin-bottom: 1.5rem;
}

.type-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.donation-type-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    background: white;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donation-type-btn:hover {
    border-color: #12961C;
    color: #12961C;
}

.donation-type-btn.active {
    background-color: #12961C;
    color: white;
    border-color: #12961C;
}

/* Amount Buttons */
.amount-selection {
    margin-bottom: 1.5rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 0.75rem;
    border: 2px solid #ddd;
    background: white;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.amount-btn:hover {
    border-color: #12961C;
    color: #12961C;
}

.amount-btn.active {
    background-color: #12961C;
    color: white;
    border-color: #12961C;
}

.custom-amount {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.custom-amount input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #12961C;
    box-shadow: 0 0 0 3px rgba(18, 150, 28, 0.1);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Checkbox Styling */
.checkbox-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-option span {
    font-weight: normal;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}