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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E8B57;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #2E8B57;
}

.donate-btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Sections */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #247A48;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.btn-secondary {
    background: #FF6B35;
    color: white;
}

.btn-secondary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2E8B57;
    color: #2E8B57;
}

.btn-outline:hover {
    background: #2E8B57;
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.full-width {
    width: 100%;
}

.social-proof {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Impact Stats */
.impact-stats {
    background: #f8f9fa;
    padding: 4rem 0;
}

.impact-stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.number {
    font-size: 3rem;
    font-weight: bold;
    color: #2E8B57;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Project Overview */
.project-overview {
    padding: 5rem 0;
}

.project-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature .icon {
    font-size: 1.5rem;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Volunteer Options */
.volunteer-options {
    padding: 5rem 0;
    background: #f8f9fa;
}

.volunteer-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.option-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card.highlighted {
    border: 3px solid #2E8B57;
    transform: scale(1.05);
}

.option-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.option-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.option-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.option-card li:last-child {
    border-bottom: none;
}

.urgency-badge {
    background: #FF4757;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.impact-text {
    color: #2E8B57;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author strong {
    display: block;
    color: #333;
}

.author span {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2E8B57, #247A48);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/page-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.remote-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/remote-hero.jpg');
}

.urgency-banner {
    background: #FF6B35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 2rem;
    display: inline-block;
}

/* Program Benefits */
.program-benefits {
    padding: 5rem 0;
}

.program-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.benefit .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Daily Schedule */
.daily-schedule {
    padding: 5rem 0;
    background: #f8f9fa;
}

.daily-schedule h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.schedule-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.schedule-item.highlight {
    background: #e8f5e8;
    margin: 0 -2rem;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 2px solid #2E8B57;
}

.time {
    font-weight: bold;
    color: #2E8B57;
    min-width: 80px;
}

.activity {
    flex: 1;
}

/* Requirements & Pricing */
.requirements {
    padding: 5rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.requirements-list h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.requirements-list ul {
    list-style: none;
}

.requirements-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.pricing-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #2E8B57;
    text-align: center;
}

.price-header {
    margin-bottom: 2rem;
}

.price-header h3 {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #2E8B57;
}

.period {
    color: #666;
    font-size: 1rem;
}

.price-includes {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
}

.price-includes li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Application Form */
.application-form {
    padding: 5rem 0;
    background: #f8f9fa;
}

.application-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.application-form > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.volunteer-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-grid textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    margin-bottom: 2rem;
}

.form-consent label {
    display: block;
    margin-bottom: 1rem;
    cursor: pointer;
}

.form-consent input {
    margin-right: 0.5rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

/* Impact Explainer */
.impact-explainer {
    padding: 5rem 0;
}

.impact-explainer h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.impact-item {
    text-align: center;
}

.impact-image {
    margin-bottom: 1.5rem;
}

.impact-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.impact-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Donation Section */
.donation-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.donation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.donation-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.trust-badges span {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.donation-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tier {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.tier.popular {
    border: 3px solid #2E8B57;
    transform: scale(1.05);
}

.popular-badge {
    background: #2E8B57;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.tier-header {
    margin-bottom: 1rem;
}

.tier-header h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #2E8B57;
}

.custom-donation {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.custom-donation h3 {
    margin-bottom: 1rem;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.custom-amount-input span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.custom-amount-input input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.2rem;
    width: 150px;
    text-align: center;
}

.recurring-option {
    text-align: center;
    margin-bottom: 2rem;
}

.recurring-option label {
    font-weight: bold;
    cursor: pointer;
}

.recurring-option small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
}

.stripe-donation {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.stripe-donation h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.selected-tier {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.security-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Perks Section */
.perks-section {
    padding: 5rem 0;
}

.perks-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.perk {
    text-align: center;
    padding: 2rem 1rem;
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perk h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Transparency Section */
.transparency-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.transparency-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.transparency-chart {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chart-item {
    text-align: center;
    flex: 1;
}

.chart-bar {
    background: #2E8B57;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0.5rem;
    min-height: 20px;
}

.chart-label {
    font-size: 0.9rem;
    color: #666;
}

.transparency-details {
    max-width: 600px;
    margin: 0 auto;
}

.transparency-details ul {
    list-style: none;
    margin-top: 1rem;
}

.transparency-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.transparency-details li:before {
    content: "✓ ";
    color: #2E8B57;
    font-weight: bold;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-points {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.mission-point {
    margin-bottom: 1.5rem;
}

.mission-point:last-child {
    margin-bottom: 0;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Partnership Section */
.partnership-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.partnership-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.partnership-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partnership-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.disclaimer-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box h4 {
    color: #856404;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    margin-bottom: 1rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value {
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Future Section */
.future-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.future-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.future-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.future-text h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.future-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.future-text ul {
    list-style: none;
    margin-left: 1rem;
}

.future-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.future-text li:before {
    content: "✓ ";
    color: #2E8B57;
    font-weight: bold;
}

.future-cta {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.future-cta h4 {
    margin-bottom: 1rem;
    color: #333;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 2rem;
    color: #333;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Impact Counter */
.impact-counter {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stat {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.impact-stat strong {
    font-size: 1.5rem;
    color: #FF6B35;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: #2E8B57;
    height: 100%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sticky Donate Bar */
.sticky-donate-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.sticky-donate-bar .donate-btn {
    width: 100%;
    text-align: center;
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .impact-stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid,
    .options-grid,
    .requirements-grid,
    .mission-grid,
    .contact-grid,
    .future-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid,
    .benefits-grid,
    .impact-grid,
    .perks-grid,
    .values-grid,
    .partnership-details {
        grid-template-columns: 1fr;
    }
    
    .donation-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-donate-bar {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .option-card.highlighted {
        transform: none;
    }
}

@media (max-width: 480px) {
    .donation-tiers {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}