/* Reset dasar */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #2a7a1b;
}
.logo-container img {
    height: 100px; /* Ukuran logo diperbaiki */
}

/* Hero Section */
.hero {
    background-color: #f4f4f4; /* Warna lebih gelap */
    color: black;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 32px;
    font-weight: bold;
    color: black; /* Warna putih agar kontras */
}
.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #a6a194; /* Sedikit abu-abu agar nyaman dibaca */
}

/* Button Mulai Donasi */
.donate-btn {
    display: inline-block;
    background: #2a7a1b; /* Warna utama hijau gelap */
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.donate-btn:hover {
    background: #3b9c2c; /* Warna lebih cerah saat hover */
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #f4f4f4;
    color: black;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}