/* General and header styling */
body {
    font-family: 'Verdana', sans-serif;
    font-size: 14px;
	margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #2C6636;
    color: white;
    padding: 12px 0;
}

.header-content {
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Start Dropdown Button */
.dropbtn {
  font-family: 'Verdana', sans-serif;
  background-color: #2C6636;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #2C6636;}

/* end of dropdown paste */

header h1 {
    margin-left: 10px;
}

header h1 a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#banner {
    background-image: url('https://qureconsulting.be/media/bannerphoto.jpg');
    /* Add your image path */
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 50%;
}

.action-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ee6c4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.action-button:hover {
    background-color: #d64b2a;
}

footer {
    background-color: #1B4018;
    color: white;
    text-align: center;
    padding: 5px;
	font-family: 'Verdana', sans-serif;
	font-size: 12px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

/* Styling for Consultancy Section */
#consultancy {
    background-color: #fff;
    padding: 20px;
    padding-top: 5px;
    padding-left: 20px;
    text-align: left;
}

#consultancy h2 {
    color: #1B4018;
    margin-bottom: 15px;
}

#consultancy h3 {
    color: #1B4018;
}

#consultancy ul {
    list-style-type: circle;
}

#consultancy li.a {
    margin-bottom: 10px;
}

#consultancy li.b {
    padding-left: 10px;
    margin-bottom: 10px;
}

#consultancy p {
    margin-bottom: 10px;
}

/* Styling for About Section */
#about {
    background-color: #f0f0f0;
    padding: 20px;
    padding-top: 5px;
    padding-left: 20px;
    text-align: left;
}

#about h2 {
    color: #1B4018;
    margin-bottom: 15px;
}

/* Styling for Contact Section */
#contact {
    background-color: #2C6636;
    padding: 10px;
    padding-top: 10px;
    padding-left: 20px;
    text-align: left;
	color: #fff;
}

#contact h2 {
    color: #1B4018;
    margin-bottom: 15px;
}

#contact p {
    margin-bottom: 10px;
}

/* Hover Effects */
/* #consultancy li:hover,
#contact p:hover {
    color: #0056b3;
    cursor: pointer;
}
*/

/* Responsive Design Adjustments */
@media screen and (max-width: 768px) {

    #consultancy,
    #about,
    #contact {
        text-align: center;
    }

    #consultancy ul {
        list-style-type: none;
        padding: 0;
    }
}