body{
  font-family: 'Poppins';  
  background-color: #38422b;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* Navigation */
.navbar {
  height: 68px;
  background-color: #ccd5c0;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  z-index: 5;
}

.nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.container-navbar {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.navbar ul {
  margin-right: 38px;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  /* margin-left: 20px; */
}

.navbar li a {
  display: block;
  color: #38422b;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar li a:hover {
  color: #6e7753; /* Change to the color you want on hover */
}

.navbar li a.tab {
  font-weight: bold;
}

.navbar img{
  width: 250px;
  height: 70px;
}

/* Hamburger menu styles */
.menu-button {
  display: none; /* Hide the button by default on larger screens */
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px; /* Adjust as needed */
  z-index: 3; /* Ensure the button is above the menu */
}

.menu-button i {
  color: #38422b;
  cursor: pointer;
  display: block;
  font-size: 35px;
}

/* Styles for smaller screens */
@media screen and (max-width: 868px) {
  .navbar ul {
    display: none; /* Hide the menu by default on smaller screens */
  }

  .menu-button {
    display: block; /* Show the button on smaller screens */
  }

  .navbar ul.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px; /* Adjust as needed */
    right: -40px;
    padding: 0;
    background-color: #ccd5c0;
  }

  .navbar li {
    margin: 0;
  }

  .navbar li a {
    padding: 10px 20px; /* Adjust as needed */
  }
}
  
.tab{
  cursor: pointer;
  margin-right: 20px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 20px;
  text-align: center; /* Center the text */
  padding: 0;
  width: 80%;
  right: -5%;
}

.dropdown-menu li:hover {
  background-color: #ccd5c0;
  border-radius: 0; /* No border-radius on hover for middle items */
}

.dropdown-menu li:first-child:hover {
  border-radius: 20px 20px 0 0; /* top-left, top-right rounded, bottom-left, bottom-right square */
}

.dropdown-menu li:last-child:hover {
  border-radius: 0 0 20px 20px; /* top-left, top-right square, bottom-left, bottom-right rounded */
}
  
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:not(:hover) .dropdown-menu {
  display: none;
}

/* BODY */
.curved-container {
  height: 30%;
  margin: -90px auto 0; /* Center the container and place it at the top */
  background-color: #6e7753; /* Background color */
  padding: 140px 140px 10px; /* Padding for content */
  border-radius: 100px; 
}
  
  /* Styles for the privacy policy text */
.curved-container h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 70px; /* Adjust the font size of the heading */
  font-weight: 900;
  margin-top: 10%;
  text-align: center;
  align-items: center;
  color: white;
}

.flex-container {
  display: flex;
  margin: 5%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.box {
  flex: 1;
  background-color: #ccd5c0;
  color: white;
  border-radius: 10px;
  text-align: justify;
}

.box p,
.box ol,
.box h2{
  color: black;
  padding: 0 40px;
}

.box ol{
  padding-left: 90px;
}

@media only screen and (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }

  .box {
    width: 100%; /* Make the box full width on smaller screens */
    margin-bottom: 20px; /* Add some spacing between boxes */
  }
}

/* Footer */
.imgbelow {
  position: relative;
  width: 100%;
  height: 98vh;
  overflow: hidden;
  margin-top: 10vh;
}

.text-container {
  position: absolute;
  top: 20%;
  text-align: center;
  color: white;
  z-index: 1;
  margin-left: 30px;
  width: 60%;
  align-items: center;
  justify-content: center;
}

.sub-description{
  text-align: left; 
  font-weight: 500;
  margin-top: -10px;
  font-size: 35px;
  line-height: 180%;
}

.imgbelow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* Adjust the colors and opacity as needed */
}

.imgbelow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .text-container {
    width: 70%;
    margin-left: 10px;
  }

  .sub-description {
    font-size: 30px; /* Adjust as needed for smaller screens */
  }
}

@media screen and (max-width: 568px) {
  .sub-description {
    font-size: 25px; /* Adjust as needed for smaller screens */
  }
}
  
/* footer(real) */
footer {
  background-color: #6e7753;
  text-align: center;
  padding: 25px 0;
}

.footer-description {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left-div-footer {
  flex: 0.4;
  padding: 20px;
  text-align: justify;
}

.left-div-footer img{
  width: 103%;
  margin-top: -30px;
  margin-left: -15px;
}

.right-div-footer {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.footer-contact {
  margin-top: 30px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  display: flex;
}

.footer-contact ul li {
  margin-right: 20px; 
}

.footer-contact a {
  text-decoration: none;
  color: inherit;
}

.fab {
  font-size: 30px; 
}

.footer-description ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: -15px;
}

.footer-description a {
  color: black; /* Set link color */
  text-decoration: none; 
}

.footer-description li a:hover {
  color: #9aa581; /* Adjust the color when the link is hovered */
}

.footer-description p{
  font-family: 'Poppins'; 
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}

.footer-content {
  align-items: center;
  padding: 0 20px; 

}

.copyright-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-right: 20px;
}
