* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.header {
    background-color: #ffa500;
    padding: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content img.logo {
    width: 150px;
}

.header-content nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-content nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.donate-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}


.welcome-section {
    background-color: white;
    display: flex;
    padding: 40px;
    justify-content: space-between;
    align-items: center;
    background-image: url(images/afbeelding_hulp.jpg);
    background-size: 100%;
    background-position-y: -90px;
    color: rgb(0, 0, 0);
    height: 450px;


}

.welcome-content {
    background-color: rgba(255, 255, 255, 0.623);
    max-width: 50%;
    text-align: right;
    
    

}

.welcome-content h2 {
    color: #000000;
    font-size: 36px;
}

.welcome-content p {
    margin: 20px 0;
    font-size: 18px;
}

.welcome-content button {
    background-color: #ffa500;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
}

.welcome-image img {
    height: 400px;
    width: 400px;
}

.location-section {
    background-color: #ffe0b2;
    padding: 40px;
    text-align: center;
}

.location-section h3 {
    color: #333;
    font-size: 28px;
    margin-top: 5%;
}

.location-section p {
    margin: 20px 0;
    font-size: 18px;
    color: #e96f13;
}

.map img {
    width: 300px;
}


.donation-section {
    background-color: #ffa500;
    padding: 40px;
    text-align: center;
}

.donation-section h3 {
    font-size: 28px;
    color: white;
}

.donation-buttons {
    margin: 20px 0;
}

.donation-buttons button {
    background-color: white;
    border: 1px solid #ffa500;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}


.contact-section {
    padding: 40px;
    background-color: white;
    text-align: center;
}

.contact-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-section a {
    color: #ffa500;
    text-decoration: none;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}