
        :root {
            --primary-green: #2e7d32;
            --secondary-green: #4caf50;
            --light-green: #e8f5e9;
            --dark-green: #1b5e20;
        }

        body {
            margin: 0;
            line-height: 1.6;
            background-color: #FCFBF5;
            color: #434E48;
			font-family: 'Figtree';
        }

      header {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: white;
    padding: 0.5rem 2rem;
	height: 25px;
	text-align: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap; /* Zorgt dat het op mobiel netjes onder elkaar gaat */
}

.home{
	max-width: 100%;
	
}

.logo {
    max-width: 300px;
	margin-top: -10%;
	margin-left: -80%;
    height: auto;
	float:left;
	
}

.header-text h1 {
    margin: 0;
    font-size: 16px;
}

.header-text p {
    margin: 0.25rem 0 0 0;
	   font-size: 12px;
    font-weight: 40;
}


        h1 {
			font-family: 'Libre Baskerville';
            font-size: 2.5rem;
            margin: 0;
        }

        h2 {
            color: var(--primary-green);
			font-family: 'Libre Baskerville';
            margin-bottom: 1rem;
        }

        nav {
            background: #F5F4F0;
			height: 100%;
			text-align: center;
			 margin: auto;
			 font-family: 'Figtree';
			  font-variant-caps: all-small-caps;
			  font-style: normal;
			  width: 100%;
				float: right;
				height: 125px;
			margin-bottom: 2%;
        }

        nav ul {
            list-style: none;
            padding-top: 2.5%;
            margin: auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        nav li {
			
            margin: 0.5rem 1rem;
        }

        nav a {
            color: #6E7472;
            text-decoration: none;
            font-weight: bold;
			font-size: 22px;
        }

        nav a:hover {
            color: var(--secondary-green);
        }
		
		
		  .lang-toggle {
  position: absolute;
  top: 12%;     /* afstand vanaf de bovenkant */
  right: 10%;   /* afstand vanaf de rechterkant */
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-flag {
  width: 35px;
  height: auto;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.lang-flag:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.lang-dropdown {
  position: absolute;
  top: 120%; /* iets onder de vlag */
  left: 0;
  display: none; /* standaard verborgen */
  background: #fff;
  border: 1px solid #ddd;
  padding: 4px 0;
  list-style: none;
  min-width: 120px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 4px;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  text-decoration: none;
  color: #000;
}

.lang-dropdown li a:hover {
  background: #f2f2f2;
}





        section {
            padding: 1rem 1rem;
            max-width: 1100px;
            margin: auto;
        }

/* FAQ */
.FAQ {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
            gap: 1.5rem;
			
        }
		
		.FAQcard{
			 background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-top: 5px solid var(--secondary-green);
			margin: 2%;
		}

        /* Diensten Grid */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-top: 5px solid var(--secondary-green);
			margin-bottom: 2%;
        }

        .card h3 {
            margin-top: 0;
            color: var(--primary-green);
        }
		.prijs {
		font-size: 20px;
		font-style: bold;
margin-left: 25%;		
		}
			
		.onderprijs {
		font-size: 10px;
		margin-top:-13%;
		margin-left: 50%;
		margin-bottom: 10%;
		font-style: italic;
		
			}
			
			.butten_tarief {
				max-width:80%;
			background: var(--primary-green);
            text-decoration: none;  /* verwijdert de onderstreping van de link */
			color: white;            /* maakt de tekst wit */
			font-weight: bold;       /* maakt de tekst vet */
            border: none;
            padding: 0.75rem 1.75rem;
            border-radius: 25px;
            cursor: pointer;
			margin-left: 20%;
			margin-right: auto;
			}
						
		 .butten_tarief:hover {
            color: var(--secondary-green);
        }
				
				
		.bericht {
			margin-top: 3%;
			font-size: 26px;
			text-align: center;
		}			
		
		#dashboard img {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


        /* CTA */
        .cta {
            background: var(--primary-green);
            color: white;
            text-align: center;
            padding: 1rem 1rem;
            border-radius: 16px;
            max-width: 1000px;
            margin: 0rem auto;
			max-height: auto;
        }

        .cta a {
            display: inline-block;
            margin-top: 1rem;
            background: white;
            color: var(--primary-green);
            padding: 0.75rem 1.0rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
        }

        .cta a:hover {
            background: var(--light-green);
        }

        /* Over ons */
        #over {
            text-align: center;
            max-width: 1000px;
			padding-top: 1rem;
            margin:  auto 1rem;
			color: white;
		
        }
		
		.over{
			color:white;
			margin-top: -30px;
			padding-top: 1rem;
		}

#contact {
	 text-align: center;
            max-width: 1000px;
            margin: 1rem auto 1rem auto;
			text-align: center;
        	max-height: auto;
			    display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
			 background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-top: 5px solid var(--secondary-green);
}

#contact_section{
	max-width: 300px;
	margin-top: -5%;
	
}


.contact{
	max-width: 300px;
}

        /* Formulier */
        form {
            max-width: 500px;
            margin: 2rem;
        }

        input, textarea {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1rem;
            border-radius: 6px;
            border: 1px solid #bbb;
        }

        button {
            background: var(--secondary-green);
            color: white;
            border: none;
            padding: 0.75rem 1.75rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
        }

        button:hover {
            background: var(--primary-green);
        }

        footer {
            background: var(--dark-green);
            color: #c8e6c9;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.9rem;
        }

        /* Responsive aanpassingen */
        @media (max-width: 1200px) {
            h1 {
                font-size: 2.25rem;
            }
            h2 {
                font-size: 1.75rem;
            }
			.home{
	max-width: 100%;
	margin-left: 70%;
	margin-right: 20%;
}
.logo {
		margin-top:0.5%;
}
			
			 nav {
		flex-direction: column;
		min-width:100%;
			height: 100%;
			margin-bottom: 2%;
        }
        }

        @media (max-width: 768px) {
            .cta {
                margin: 2rem 1rem;
                padding: 2rem 1.5rem;
                border-radius: 12px;
            }
            nav li {
                margin: 0.5rem 0.5rem;
				flex-direction: column;
				transform: translateX(-15%);
            }
			
			.home{
				max-width: 50%;
			}
			.logo {
	max-width: auto;
	height: 80px;
    transform: translateX(-10%);
	display: block;
  }
  

			
        }

        @media (max-width: 600px) {
            header {
                padding: 2rem 1rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            form {
                padding: 0 1rem;
            }
            input, textarea, button {
                font-size: 1rem;
            }
			
			  .lang-toggle {
  position: absolute;
  top: 13%;     /* afstand vanaf de bovenkant */
  right: 42%;   /* afstand vanaf de rechterkant */
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-flag {
  width: 30px;
  height: auto;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.lang-dropdown {
  position: absolute;
  top: 120%; /* iets onder de vlag */
  left: 0;
  display: none; /* standaard verborgen */
  background: #fff;
  border: 1px solid #ddd;
  padding-left: 20%;
  list-style: none;
  min-width: 90px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 4px;
}
			
}
		
       

