* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #f8f9fa;
    font-weight: 300;
}
header {
    background: linear-gradient(135deg, #1c3c34 0%, #2d5a4a 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
}
header p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1c3c34;
    font-weight: 700;
    letter-spacing: 0.5px;
}
section p {
    font-size: 1.05rem;
    font-weight: 300;
}
.hero {
    background: white;
    text-align: center;
    padding: 80px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.hero h2 {
    font-size: 2.5rem;
}
.hero img {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1c3c34 0%, #2d5a4a 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(28,60,52,0.3);
    letter-spacing: 0.5px;
    font-size: 1rem;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28,60,52,0.4);
}
a {
    word-wrap: break-word;
    color: #1c3c34;
    transition: color 0.3s;
    font-weight: 400;
}
a:hover {
    color: #2d5a4a;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.service-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.service-item h3 {
    margin: 10px 0;
    color: #1c3c34;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
}
#donate {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
footer {
    background: linear-gradient(135deg, #1c3c34 0%, #2d5a4a 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    font-weight: 300;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }
    section {
        padding: 40px 15px;
    }
    section h2 {
        font-size: 1.7rem;
    }
    .hero {
        padding: 50px 15px;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .services {
        grid-template-columns: 1fr;
    }
}
