body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #C83D3D;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header .logo img {
    width: 100px;
    height: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    background-color: #EEE;
    padding: 50px 20px;
    text-align: center;
}

.betaalbare {
    padding: 20px;
    background-color: #F0F0F0;
    margin: 10px 0;
}

.betaalbare .subsection {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
    float: left;
}

.betaalbare .subsection img {
    width: 60%;
    height: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/*.image-left {
    float: left;
    margin-right: 10px;
}

.image-right {
    float: right;
    margin-left: 10px;
}*/

@media (min-width: 601px) and (max-width: 1200px) {
    .betaalbare {
        padding: 20px;
        background-color: #F0F0F0;
        margin: 10px 0;
    }

    .betaalbare .subsection {
        width: 49%;
        padding: 10px;
        box-sizing: border-box;
        float: left;
    }

    .betaalbare .subsection img {
        width: 60%;
        height: auto;
    }
}

@media (max-width: 600px) {
    .betaalbare .subsection img {
        display: block;
        margin: 10px auto;
        float: none;
        width: 60%;
        height: auto;
    }

    .betaalbare .subsection {
        width: 100%;
        float: none;
    }

    .betaalbare .subsection p {
        display: block;
    }
}

.custom {
    padding: 20px;
    background-color: #F0F0F0;
    margin: 10px 0;
}

.custom .custom-content {
    display: flex;
    align-items: center; /* Optional: This will vertically align the items in the center */
}

.custom .custom-content img {
    flex: 1;
    max-width: 17%;
}

.custom .custom-content ul {
    flex: 1;
}

@media (max-width: 600px) {
    .custom .custom-content img {
        flex: 1;
        max-width: 50%;
    }
    .custom .custom-content {
        flex-direction: column;
    }
}

.ai {
    padding: 20px;
    background-color: #F0F0F0;
    margin: 10px 0;
}

.ai .ai-content {
    display: flex;
    align-items: center; /* Optional: This will vertically align the items in the center */
}

.ai .ai-content img {
    flex: 1;
    max-width: 10%;
}

.ai .ai-content ul {
    flex: 1;
}

@media (max-width: 600px) {
    .ai .ai-content img {
        flex: 1;
        max-width: 50%;
    }
    .ai .ai-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .ai.custom-content {
        flex-direction: column-reverse;
    }
}

.services, .about, .contact {
    padding: 20px;
}

.contact .contact-container {
    display: flex;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    padding: 20px;
}

.contact .address {
    flex: 1;
    padding-right: 20px;
}

.contact .contact-logo {
    width: 100px;
    height: auto;
}

.contact form {
    flex: 1;
    display: block;
    margin: 0;
    padding: 20px;
}

.contact form label {
    display: block;
}

.contact form input, .contact form textarea {
    font-family: Arial, sans-serif;
    display: block;
    width: 80%;
    margin: 10px 0;
    padding: 2px;
    text-align: left;
}

@media (max-width: 600px) {
    .contact .contact-container {
        flex-direction: column;
    }
}

.service-item {
    background-color: #F0F0F0;
    margin: 10px 0;
    padding: 10px;
}

footer {
    background-color: #C83D3D; /* Changed to C83D3D */
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer .social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.fancy-button {
    background-color: #C83D3D; /* Button color */
    color: white; /* Text color */
    border: none; /* Remove default button border */
    padding: 10px 20px; /* Add some padding */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove default text decoration */
    display: inline-block;
    font-size: 16px; /* Increase font size */
    margin: 4px 2px;
    transition-duration: 0.4s; /* Add animation when you hover over the button */
    cursor: pointer; /* Change cursor to pointer when you hover over the button */
}

.fancy-button:hover {
    background-color: white; /* Change background color on hover */
    color: #C83D3D; /* Change text color on hover */
}