/* Algemene reset en basisstijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header en navigatie */
header {
    color: #fff;
    padding: 0; 
    margin: 0; 
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background-color: #aeb58a;
}

.navbar-title {
    font-family: "Caudex", serif;
    font-size: 18px;
    font-weight: 100;
    color: white;
    margin-left: 35px;
}

.logo-img {
    height: 55px;
    width: 60px;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-links li {
    margin-right: 50px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.nav-links li a:hover {
    color: #c4c4c4;
}

/* Main sectie */
main {
    padding: 50px 0;
}



.content {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    margin-top: 100px;
}

.feature-detail img {
    width: 400px;
    height: 530px;
    margin-left: 40px;
}

.text-content {
    width: 50%;
    margin-left: 80px;
}

.feature-detail h2 {
    font-size: 25px;
    font-family: 'Caudex', serif;
    font-weight: 200;
    color: #85754e;
    margin-top: 0;
    
}

.feature-detail h3 {
    font-size: 20px;
    font-family: 'Caudex', serif;
    font-weight: 200;
    color: #85754e;
    margin-top: 20px;
}

.feature-detail p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 200;
    margin: 10px 0;
    margin-bottom: 40px;
}

.feature-detail ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 40px;
}

.feature-detail ul li {
    margin: 5px 0;
    font-size: 15px;
    font-weight: 200;
    line-height: 1.6;
}

.introduction-button {
    background-color: #f8f9fa;
    color: #85754e;
    border: 1px solid #85754e;
    padding: 20px 50px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block; 
}

.introduction-button:hover {
    background-color: #85754e;
    color: white;
}


.introduction-button {
    margin-top: 60px;
}


/* footer sectie */
.footer {
    background-color: #aeb58a;
    color: #ffffff;
    padding: 50px 50px; 
    height: 400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 100px;
}
.footer-column {
    flex: 1;
    margin-right: 50px;
}


.footer-column h2 {
    font-size: 24px;
    font-family: "Caudex", serif;
    font-weight: 200;
    margin-bottom: 20px;
}


.footer-column p, .footer-column a, .footer-column label {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}


.footer-column a:hover {
    text-decoration: underline;
}
.footer-column input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px; 
    background-color: #aeb58a;
    border: 1px solid white;
}
.footer-column input[type="checkbox"] {
    margin-right: 10px;
}
.footer-column input[type="submit"] {
    border: none;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    color: #aeb58a;
    background-color: white;
}
.footer-column input[type="submit"]:hover {
    background-color: #ddd;
}