/* Styles extracted from one-time.html */

/* Base styles */
body  {
  
    font-family: "Open Sans", sans-serif;
  
    margin: 0;
  
    padding: 0;
  
    color: #333;
  
    line-height: 1.6
    }


h1, h2, h3, h4, h5, h6  {
  
    font-family: "Montserrat", sans-serif
    }


.container  {
  
    width: 100%;
  
    max-width: 1200px;
  
    margin: 0 auto;
  
    padding: 0 1rem
    }


/* Header styles */
header  {
  
    position: sticky;
  
    top: 0;
  
    z-index: 1000;
  
    display: flex;
  
    background-color: #2E7D32;
  
    color: white;
  
    padding: 1rem 0;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
    }


.header-container  {
  
    display: flex;
  
    justify-content: space-between;
  
    align-items: center
    }


.logo  {
  
    display: flex;
  
    align-items: center;
  
    text-decoration: none;
  
    color: white
    }


.logo img  {
  
    width: 40px;
  
    height: 40px;
  
    margin-right: 10px
    }


.logo span  {
  
    font-size: 1.5rem;
  
    font-weight: bold
    }


nav ul  {
  
    display: flex;
  
    list-style: none;
  
    margin: 0;
  
    padding: 0
    }


nav ul li  {
  
    margin-left: 1.5rem
    }


nav ul li a  {
  
    color: white;
  
    text-decoration: none;
  
    transition: color 0.3s
    }


nav ul li a:hover  {
  
    color: #FFC107
    }


.mobile-menu-btn  {
  
    display: none;
  
    background: none;
  
    border: none;
  
    color: white;
  
    font-size: 1.5rem;
  
    cursor: pointer
    }


/* Breadcrumbs */
.breadcrumbs  {
  
    padding: 1rem 0;
  
    background-color: #f5f5f5
    }


.breadcrumbs ul  {
  
    list-style: none;
  
    padding: 0;
  
    margin: 0;
  
    display: flex;
  
    flex-wrap: wrap
    }


.breadcrumbs li  {
  
    display: flex;
  
    align-items: center
    }


.breadcrumbs li:not(:last-child)::after  {
  
    content: "/";
  
    margin: 0 0.5rem;
  
    color: #999
    }


.breadcrumbs a  {
  
    color: #2E7D32;
  
    text-decoration: none
    }


.breadcrumbs a:hover  {
  
    text-decoration: underline
    }


.breadcrumbs .current  {
  
    color: #666
    }


/* Hero section */
.hero  {
  
    background-color: #e8f5e9;
  
    padding: 4rem 0;
  
    text-align: center
    }


.hero h1  {
  
    color: #2E7D32;
  
    font-size: 2.5rem;
  
    margin-bottom: 1rem
    }


.hero p  {
  
    font-size: 1.1rem;
  
    max-width: 800px;
  
    margin: 0 auto 2rem
    }


/* Donation form section */
.donation-section  {
  
    padding: 4rem 0
    }


.donation-container  {
  
    display: grid;
  
    grid-template-columns: 2fr 1fr;
  
    gap: 3rem
    }


@media (max-width: 768px)  {
  
    .donation-container  {
  
        grid-template-columns: 1fr
        }


    }


.donation-form  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
    padding: 2rem
    }


.donation-form h2  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 1.5rem
    }


.form-group  {
  
    margin-bottom: 1.5rem
    }


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


.form-control  {
  
    width: 100%;
  
    padding: 0.75rem;
  
    border: 1px solid #ddd;
  
    border-radius: 0.375rem;
  
    font-size: 1rem
    }


.form-control:focus  {
  
    outline: none;
  
    border-color: #2E7D32;
  
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2)
    }


.amount-options  {
  
    display: grid;
  
    grid-template-columns: repeat(3, 1fr);
  
    gap: 1rem;
  
    margin-bottom: 1rem
    }


.amount-option  {
  
    background-color: #f5f5f5;
  
    border: 2px solid transparent;
  
    border-radius: 0.375rem;
  
    padding: 1rem;
  
    text-align: center;
  
    cursor: pointer;
  
    transition: all 0.3s ease
    }


.amount-option:hover  {
  
    background-color: #e8f5e9
    }


.amount-option.active  {
  
    background-color: #e8f5e9;
  
    border-color: #2E7D32
    }


.amount-option span  {
  
    display: block;
  
    font-size: 1.25rem;
  
    font-weight: 600;
  
    color: #2E7D32
    }


.custom-amount  {
  
    margin-top: 1rem
    }


.payment-methods  {
  
    margin-bottom: 1.5rem
    }


.payment-method  {
  
    display: flex;
  
    align-items: center;
  
    margin-bottom: 0.75rem
    }


.payment-method input  {
  
    margin-right: 0.5rem
    }


.btn  {
  
    display: inline-block;
  
    padding: 0.75rem 1.5rem;
  
    border-radius: 0.375rem;
  
    font-weight: 600;
  
    text-align: center;
  
    text-decoration: none;
  
    transition: all 0.3s ease;
  
    border: none;
  
    cursor: pointer;
  
    font-size: 1rem;
  
    width: 100%
    }


.btn-primary  {
  
    background-color: #2E7D32;
  
    color: white
    }


.btn-primary:hover  {
  
    background-color: #1B5E20
    }


.secure-notice  {
  
    display: flex;
  
    align-items: center;
  
    justify-content: center;
  
    margin-top: 1rem;
  
    color: #666;
  
    font-size: 0.875rem
    }


.secure-notice svg  {
  
    margin-right: 0.5rem
    }


/* Impact sidebar */
.impact-sidebar  {
  
    background-color: #f5f5f5;
  
    border-radius: 0.5rem;
  
    padding: 2rem
    }


.impact-sidebar h2  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 1.5rem
    }


.impact-item  {
  
    margin-bottom: 1.5rem;
  
    display: flex;
  
    align-items: flex-start
    }


.impact-icon  {
  
    width: 40px;
  
    height: 40px;
  
    background-color: #e8f5e9;
  
    border-radius: 50%;
  
    display: flex;
  
    align-items: center;
  
    justify-content: center;
  
    margin-right: 1rem;
  
    flex-shrink: 0
    }


.impact-icon svg  {
  
    width: 20px;
  
    height: 20px;
  
    color: #2E7D32
    }


.impact-text h3  {
  
    margin-top: 0;
  
    margin-bottom: 0.5rem;
  
    font-size: 1.1rem;
  
    color: #2E7D32
    }


.impact-text p  {
  
    margin: 0;
  
    font-size: 0.875rem
    }


.testimonial  {
  
    background-color: #e8f5e9;
  
    padding: 1.5rem;
  
    border-radius: 0.5rem;
  
    margin-top: 2rem
    }


.testimonial p  {
  
    font-style: italic;
  
    margin-bottom: 1rem
    }


.testimonial-author  {
  
    font-weight: 600
    }


/* Other ways section */
.other-ways  {
  
    padding: 4rem 0;
  
    background-color: #f9f9f9
    }


.other-ways h2  {
  
    color: #2E7D32;
  
    text-align: center;
  
    margin-bottom: 2rem
    }


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


.way-card  {
  
    background-color: white;
  
    border-radius: 0.5rem;
  
    overflow: hidden;
  
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  
    transition: transform 0.3s ease, box-shadow 0.3s ease
    }


.way-card:hover  {
  
    transform: translatey(-5px);
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15)
    }


.way-card-content  {
  
    padding: 1.5rem
    }


.way-card h3  {
  
    color: #2E7D32;
  
    margin-top: 0;
  
    margin-bottom: 1rem
    }


.way-card p  {
  
    margin-bottom: 1.5rem
    }


/* FAQ section */
.faq-section  {
  
    padding: 4rem 0
    }


.faq-section h2  {
  
    color: #2E7D32;
  
    text-align: center;
  
    margin-bottom: 2rem
    }


.faq-item  {
  
    margin-bottom: 1.5rem;
  
    border-bottom: 1px solid #eee;
  
    padding-bottom: 1.5rem
    }


.faq-question  {
  
    font-weight: 600;
  
    margin-bottom: 0.75rem;
  
    color: #2E7D32
    }


.faq-answer  {
  
    color: #666
    }


/* Footer styles */
footer  {
  
    background-color: #2E7D32;
  
    color: white;
  
    padding: 4rem 0 2rem
    }


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


footer h4  {
  
    font-size: 1.25rem;
  
    margin-bottom: 1.25rem
    }


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


footer ul li  {
  
    margin-bottom: 0.75rem
    }


footer ul li a  {
  
    color: #e0e0e0;
  
    text-decoration: none;
  
    transition: color 0.3s
    }


footer ul li a:hover  {
  
    color: #FFC107
    }


.footer-contact  {
  
    display: flex;
  
    align-items: center;
  
    margin-bottom: 1rem
    }


.footer-contact img  {
  
    width: 48px;
  
    height: 48px;
  
    margin-right: 1rem
    }


.footer-contact span  {
  
    font-size: 1.5rem;
  
    font-weight: bold
    }


.language-selector  {
  
    position: relative;
  
    margin-top: 1rem
    }


.language-selector select  {
  
    appearance: none;
  
    background-color: transparent;
  
    border: 1px solid rgba(255, 255, 255, 0.3);
  
    color: white;
  
    padding: 0.5rem 2rem 0.5rem 1rem;
  
    border-radius: 0.25rem;
  
    cursor: pointer;
  
    width: 100%
    }


.language-selector::after  {
  
    content: "";
  
    position: absolute;
  
    right: 1rem;
  
    top: 50%;
  
    transform: translatey(-50%);
  
    width: 0;
  
    height: 0;
  
    border-left: 5px solid transparent;
  
    border-right: 5px solid transparent;
  
    border-top: 5px solid white;
  
    pointer-events: none
    }


.footer-bottom  {
  
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  
    padding-top: 1.5rem;
  
    text-align: center;
  
    color: #e0e0e0
    }


/* Responsive styles */
@media (max-width: 768px)  {
  
    .header-container  {
  
        flex-wrap: wrap
        }


    .mobile-menu-btn  {
  
        display: block
        }


    nav  {
  
        flex-basis: 100%;
  
        display: none
        }


    nav.active  {
  
        display: block;
  
        margin-top: 1rem
        }


    nav ul  {
  
        flex-direction: column
        }


    nav ul li  {
  
        margin: 0.5rem 0
        }


    .amount-options  {
  
        grid-template-columns: 1fr
        }


    }