* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}



.logo-link {
    text-decoration: none;
}

.logo {
    margin: 0;
    color: #2c3e50;
}

.hero {
    background: linear-gradient(to right, #2c3e50, #3498db);
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #45a049;
}

.features {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.how-it-works {
    padding: 4rem 2rem;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #3498db;
    color: white;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta .btn {
    background-color: white;
    color: #3498db;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-top: 10px;
}

.cta .btn:hover {
    background-color: #f5f5f5;
}

.donation-container {
    text-align: center;
    margin-top: 20px;
}

.feature-highlight {
    color: white;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.feature-icon-animated {
    font-size: 1.2em;
    animation: pulse 2s infinite;
}





@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
}  
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}