*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.container{
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(5, 46, 0, 0.65),rgba(5, 46, 0, 0.65)), url(images/background.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10px 8%;
}

nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo{
    width: 180px;
    cursor: pointer;
}

nav ul{
    list-style: none;
    width: 100%;
    text-align: right;
    padding-right: 0px;
}

nav ul li{
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
}

.content{
    margin-top: 1%;
    color: #fff;
}

.content h1{
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 15px
    text-align: left;
}

.content1 {
    margin-top: 1%;
    color: #fff;
    text-align: left;
}

.content1 h1{
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 15px;
    text-align: center;
}

.content2 {
    margin-top: 1%;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align:center
}

.content2 h1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.services{
    margin-top: 1%;
    max-width: 800px;
    color: #fff;
    text-align: center;
}

/* Container for the dropdown */
.dropdown {
  position: relative; /* Needed to position the dropdown content correctly below the button */
  display: inline-block; /* Allows the button and menu to sit side-by-side with other elements */
}

/* Style the dropdown button */
.dropbtn {
  background-color: transparent; /* Transparent background to blend with the nav */
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute; /* Position the content relative to the dropdown container */
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1; /* Ensures the dropdown appears on top of other content */
}

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

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

/* Show the dropdown menu on hover over the parent container */
.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: #3e8e41;
}

.row {
  display: flex; /* Activates Flexbox on the container */
  gap: 20px; /* Adds space between columns */
}

.column {
  flex: 1; /* Makes each column take an equal share of the available space */
  padding: 15px;
  background-color: none;
}