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

.main-header, .secondary-header {
    background-color: #143039;
    padding: 10px 0;
    font-weight: bold;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation ul li {
    margin-left: 20px;
}
.secondary-navigation ul li {
    margin-left: 20px;
}
.navigation ul li a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    color: #FCFCFE;
}
.secondary-navigation ul li a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    color: #000000;
}
.navigation ul li a:hover {
    color: #FF8F5F;
}
.secondary-navigation ul li a:hover {
    color: #FF8F5F;
}
.navigation ul li a.active,
.secondary-navigation ul li a.active {
    color: #FF8F5F;
    font-weight: bold;
    border-bottom: 2px solid #FF8F5F;
}

.header-buttons .btn, .search-bar button {
    text-decoration: none;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 14px;
    color: #143039;
    background-color: #E9FCB5;
    transition: background-color 0.3s;
}

.secondary-header {
    display: none;
    border-bottom: 2px solid #000000;
    background-color: #FCFCFE;
    color: #000000;
    padding: 10px 0;
    transition: all 0.5s ease-in-out;
}
.secondary-header.active {
    display: flex; 
}
.secondary-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

.navigation {
    flex: 1; 
    display: flex;
    justify-content: center; 
}
.secondary-navigation {
    flex: 1; 
    display: flex;
    justify-content: center;
    color: #000000;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.secondary-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; 
}

.search-bar {
    display: flex;
    align-items: center;
    border: 2px solid #000000;
    border-radius: 5px;
    gap: 5px; 
    margin-left: 3rem; 
    position: relative; 
}

.search-bar input {
    padding: 10px 40px 10px 10px; 
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: white;
    color: black;
    width: 200px; 
}

.search-bar .search-icon {
    position: absolute;
    right: 10px; 
    cursor: pointer; 
    width: 20px;
    height: 20px;
}
/* Ensure the dropdown button and adjacent buttons align properly */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 5px; /* Add spacing between buttons */
}

/* Dropdown adjustments */
.dropdown {
    position: relative;
    display: inline-block;
}

.font-button {
    background-color: transparent;
    color: #FCFCFE;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    border: none; /* Remove border */
    padding: 0; /* Ensure no extra padding */
    margin: 0;
    cursor: pointer;
    transition: color 0.3s;
    height: 100%; /* Align with neighboring buttons */
}

/* Dropdown menu */
.dropdown-menu {
    list-style: none; /* Removes the default bullets */
    display: none;
    position: absolute;
    top: 100%; /* Ensures it appears below the button */
    left: -1rem;
    background-color: #143039;
    color: #FCFCFE;
    min-width: 150px;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 10;
    text-align: left;
}

/* Show menu when hovering over the dropdown button OR the menu itself */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

/* Dropdown menu items */
.dropdown-menu li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dropdown-menu li:hover {
    background-color: #112830;
}

/* Links inside dropdown */
.dropdown-menu li a {
    text-decoration: none;
    color: #FCFCFE;
    display: block;
    width: 100%;
}

.dropdown-menu li a:hover {
    color: #FF8F5F;
}

/* Fix the height and alignment of the dropdown icon */
.dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}


.thank-you-message {
    flex: 1; /* Neemt de resterende ruimte tussen header en footer in */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f9f9f9; /* Optioneel */
    padding:6rem;
    box-sizing: border-box;
}

.thank-you-message h2 {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    color: var(--main-colour);
}

.thank-you-message .btn-primary {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: var(--main-colour);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.thank-you-message .btn-primary:hover {
    background-color: var(--call-to-action);
}