body {
    font-family: 'Mulish', sans-serif;
    background-color: #E7DFD8;
    margin: 0;
    padding: 0;
}
nav {
    background-color: #E7DFD8;
    color: #333;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
}
nav ul li {
    margin: 0 10px;
}
nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
}
.menu-icon {
    display: none;
}
.container {
    background-color: #E7DFD8;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: row;
    max-width: 90%;
    margin: 100px auto 0; /* Added margin-top to accommodate the fixed header */
}
.text-section {
    max-width: 50%;
    padding-right: 20px;
}
.logo {
    width: 200px;
    height: auto;
}
.social-icons img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
}
h1, h2, h3 {
    font-weight: 700;
}
p {
    font-weight: 300;
}
.about {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    background-color: #E7DFD8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about-content {
    display: flex;
    align-items: flex-start;
}
.about img {
    max-width: 300px;
    height: auto;
    margin-right: 20px;
}
.about-text {
    max-width: 100%;
}
.prijslijst {
    background: url('img/image2.jpg') no-repeat center center/cover;
    color: #333;
    padding: 40px 20px;
    text-align: center;
}
.prijslijst .pricing-table {
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}
.prijslijst .tile {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 20px;
    background-color: #E7DFD8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.pricing-table h3 {
    font-weight: 700;
}
.pricing-table p {
    font-weight: 300;
}
.button {
    background-color: #6B4E3D;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}
.note {
    background-color: #8fbc8f;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: left;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.contact {
    background: url('img/contact.jpg') no-repeat center center/cover;
    color: #333;
    padding: 40px 20px;
    text-align: center;
}
.contact-content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: auto;
}
.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    margin: 0 20px;
    flex-basis: 100%;
    justify-content: center;
}
.contact-item img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.contact-item a {
    color: inherit;
    text-decoration: none;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: row;
}
.modal-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.modal-images {
    display: flex;
    flex-direction: column;
}
.modal-images img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}
.modal-text {
    max-width: 70%;
    margin-left: 20px;
}
.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        margin: 60px auto 0;
    }
    .text-section {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .logo {
        width: 150px;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #E7DFD8;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        font-size: 24px;
    }
    nav ul.showing {
        display: flex;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
    }
    .menu-icon div {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about img {
        margin: 0 0 20px 0;
    }
    .about-text {
        text-align: center;
    }
    .pricing-table {
        text-align: center;
    }
    .pricing-table div {
        margin-bottom: 10px;
    }
    .modal-content {
        flex-direction: column;
        text-align: center;
    }
    .modal-body {
        flex-direction: column;
        align-items: center;
    }
    .modal-images {
        flex-direction: row;
        justify-content: center;
    }
    .modal-images img {
        max-width: 100px;
        margin: 10px;
    }
    .modal-text {
        max-width: 100%;
        margin-left: 0;
    }
    .contact-info {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .logo {
        width: 100px;
    }
    .social-icons img {
        width: 20px;
        height: 20px;
        margin: 0 5px;
    }
}
