/* ===== Base Styles ===== */
.donate-page {
    padding: 40px 20px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Hero Section ===== */
.donate-hero {
    background: linear-gradient(135deg, #33477d 0%, #008080 100%);
    color: white;
    text-align: center;
    padding: 60px 40px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.donate-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.donate-hero p {
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.donate-hero .hero-highlight {
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 20px;
}

/* ===== Main Donation Section ===== */
.donation-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.donation-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #33477d;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.donation-content {
    max-width: 900px;
    margin: 0 auto;
}

.donation-content p {
    font-size: 1.2rem;
    color: #33477d;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.donation-impact {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 5px solid #008080;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.donation-impact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #33477d;
    margin-bottom: 20px;
    text-align: center;
}

.impact-list {

    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    font-size: 1.1rem;
    color: #33477d;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.impact-list li::before {
    content: "💛";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.donation-gratitude {
    background-color: #33477d;
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.donation-gratitude p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.donation-gratitude .final-message {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 20px;
    color: white;
}

/* ===== EasyFundraising Section ===== */
.easyfundraising-section {
    background-color: white;
    padding: 60px 40px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #008080;
}

.easyfundraising-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #33477d;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.easyfundraising-content {
    max-width: 900px;
    margin: 0 auto;
}

.easyfundraising-content p {
    font-size: 1.2rem;
    color: #33477d;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.brands-highlight {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.brands-highlight p {
    font-size: 1.1rem;
    color: #33477d;
    margin: 0;
    font-weight: 600;
}

.steps-container {
    background-color: #008080;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.steps-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.steps-list a {
    color: white;
}

.steps-list li {
    counter-increment: step-counter;
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    color: #008080;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.easyfundraising-link {
    display: inline-block;
    background-color: #33477d;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 71, 125, 0.3);
}

.easyfundraising-link:hover {
    background-color: #556aa5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 71, 125, 0.4);
    text-decoration: none;
    color: white;
}

.impact-message {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.impact-message p {
    font-size: 1.1rem;
    color: #33477d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.final-thanks {
    background-color: #33477d;
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
}

.final-thanks p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.final-thanks .closing-message {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 15px;
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .donate-page {
        padding: 30px 15px;
    }
    
    .donate-hero h1 {
        font-size: 2.5rem;
    }
    
    .donate-hero p {
        font-size: 1.2rem;
    }
    
    .donation-section, .easyfundraising-section {
        padding: 40px 30px;
    }
    
    .donation-section h2, .easyfundraising-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .donate-page {
        padding: 20px 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .donate-hero {
        padding: 40px 20px;
        margin-bottom: 40px;
    }
    
    .donate-hero h1 {
        font-size: 2rem;
    }
    
    .donate-hero p {
        font-size: 1.1rem;
    }
    
    .donation-section, .easyfundraising-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .donation-section h2, .easyfundraising-section h2 {
        font-size: 2rem;
    }
    
    .donation-content p, .easyfundraising-content p {
        font-size: 1.1rem;
    }
    
    .donation-impact, .steps-container {
        padding: 25px;
    }
    
    .impact-list li, .steps-list li {
        font-size: 1rem;
    }
    
    .steps-list li {
        padding-left: 40px;
    }
    
    .easyfundraising-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .donate-hero h1 {
        font-size: 1.8rem;
    }
    
    .donate-hero p {
        font-size: 1rem;
    }
    
    .donation-section h2, .easyfundraising-section h2 {
        font-size: 1.8rem;
    }
    
    .donation-content p, .easyfundraising-content p {
        font-size: 1rem;
    }
    
    .donation-impact, .steps-container, .donation-gratitude, .final-thanks {
        padding: 20px;
    }
    
    .impact-list li {
        padding-left: 25px;
    }
    
    .steps-list li {
        padding-left: 35px;
    }
    
    .steps-list li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .easyfundraising-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== Large Screen Optimization ===== */
@media (min-width: 1200px) {
    .donate-page {
        padding: 60px 40px;
    }
    
    .donate-hero h1 {
        font-size: 3.5rem;
    }
    
    .donate-hero p {
        font-size: 1.4rem;
    }
    
    .donation-section, .easyfundraising-section {
        padding: 80px 60px;
    }
    
    .donation-section h2, .easyfundraising-section h2 {
        font-size: 2.8rem;
    }
    
    .donation-content p, .easyfundraising-content p {
        font-size: 1.3rem;
    }
} 