* {
    box-sizing: border-box;
}

h1, h3, h4, h5, h6 {
    color: #79b52a;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 24px;
    color: #000 ;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin-inline: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-block: 20px;
}

/* Logo links */
.logo {
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

header>div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.contact a {
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #79b52a;
}

.navigation>ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;

    margin: 0;
    padding: 0;
    font-size: 20px;
}

.navigation>ul>li {
    list-style: none;
}

.navigation>ul>li>a {
    color: #79b52a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navigation>ul>li>a:hover {
    color: #000;
}

.hero-img {
    display: flex;
    justify-content: center;
}



img {
    width: 70%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.hero>p {
    font-size: 18px;
    margin-top: 20px;
}

.content {
    margin: 60px auto 0;
}

.image-container {
    display: flex;
    justify-content: center;
}

.image-container> img {
    width: 50%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border: solid 4px #79b52a;
}

.content p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

footer {
    text-align: center;
    padding-top: 50px;
}

footer> p {
    font-size: 15px;
    color: #333;
}

footer> p> a {
    color: #000;
    text-decoration: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info a {
    color: #79b52a;
    text-decoration: none;
    font-size: 18px;
}

.contact-info a:hover {
    color: #000;
}

.line {
    width: 100%;
    height: 4px;
    background-color: #79b52a;
    margin: 20px 0;
}

/* Tablet en mobiel */
@media (max-width: 800px) {
    header {
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }

    .logo {
        width: 180px;
    }

    .contact a {
        font-size: 18px;
        text-align: center;
    }

    .hero-img img {
        height: 300px;
    }

    section {
        padding-block: 30px;
    }
}

@media (max-width: 500px) {
    .container {
        width: min(100% - 24px, 1100px);
    }

    .contact {
        gap: 12px;
        text-align: center;
    }

    .navigation>ul {
        font-size: 18px;
    }

    .hero-img img {
        height: 220px;
    }

    .content h2 {
        font-size: 26px;
    }
}