/* Donate Page Styles */

:root {
    --primary-blue: #0066cc;
    --dark-blue: #004b94;
    --light-blue: #e6f2ff;
    --accent-teal: #00a6a6;
    --accent-orange: #ff6b35;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #555555;
    --white: #ffffff;
    --black: #222222;
}

/* Hero Section */
.donate-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566438480900-0609be27a4be?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2094&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.donate-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.donate-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.donate-hero p {
    font-size: 18px;
    margin-bottom: 0;
}

/* Impact Section */
.impact-section {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.impact-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.impact-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.impact-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 20px;
}

.impact-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 16px;
    color: var(--dark-gray);
}

.impact-text {
    max-width: 800px;
    margin: 0 auto;
}

.impact-text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Donation Options */
.donation-options {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.donation-options h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.donation-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.card-header.one-time {
    background-color: var(--primary-blue);
}

.card-header.monthly {
    background-color: var(--accent-teal);
}

.card-header.sponsor {
    background-color: var(--accent-orange);
}

.card-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.card-content {
    padding: 30px 25px;
}

.card-content p {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.5;
}

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

.amount-btn {
    padding: 10px;
    background-color: var(--light-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background-color: var(--medium-gray);
}

.amount-btn.active {
    background-color: var(--light-blue);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.amount-btn.custom {
    grid-column: span 3;
}

.donate-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.donate-btn:hover {
    background-color: var(--dark-blue);
}

.sponsorship-levels {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.sponsorship-levels li {
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    font-size: 15px;
}

/* Other Ways to Give */
.other-ways {
    background-color: var(--white);
    padding: 60px 0;
}

.other-ways h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.ways-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.way-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.way-item:hover {
    transform: translateY(-5px);
}

.way-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.way-icon img {
    width: 35px;
    height: 35px;
}

.way-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.way-item p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--light-blue);
    padding: 60px 0;
}

.testimonials-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.testimonial {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    flex: 1;
    max-width: 300px;
    min-height: 300px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 2;
    padding: 30px;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 700;
    font-style: normal !important;
    color: var(--black) !important;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 60px 0;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-arrow::before,
.faq-arrow::after {
    content: '';
    position: absolute;
    background-color: var(--primary-blue);
    top: 9px;
    width: 12px;
    height: 2px;
    transition: transform 0.3s ease;
}

.faq-arrow::before {
    left: 0;
    transform: rotate(45deg);
}

.faq-arrow::after {
    right: 0;
    transform: rotate(-45deg);
}

.faq-item.active .faq-arrow::before {
    transform: rotate(-45deg);
}

.faq-item.active .faq-arrow::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: var(--light-gray);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.contact-section > p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--dark-gray);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    min-width: 200px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.contact-item p, .contact-item a {
    font-size: 17px;
    color: var(--dark-gray);
}

.contact-item a:hover {
    color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .testimonial {
        flex-direction: column;
    }

    .testimonial-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .donate-hero h1 {
        font-size: 36px;
    }

    .impact-stats {
        flex-direction: column;
        align-items: center;
    }

    .impact-number {
        font-size: 36px;
    }

    .options-grid {
        flex-direction: column;
        align-items: center;
    }

    .donation-card {
        max-width: 100%;
    }
}

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

    .donate-hero p {
        font-size: 16px;
    }

    .impact-section h2,
    .donation-options h2,
    .other-ways h2,
    .testimonials-section h2,
    .faq-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 26px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

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

    .amount-btn.custom {
        grid-column: span 2;
    }
}
