/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

header {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  background-color: #333;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
  align-items: center;
}

/* Style for the left arrow icon */
header a:first-child .fa {
  margin-right: 5px;
}

header a,
header .fa {
  color: white;
  font-size: 18px;
}

/* Style for the right arrow icon */
header a:last-child .fa {
  margin-left: 5px;
}

header h1 {
  font-size: 36px;
}

/* Privacy Policy Container */
.privacy-policy {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
  font-size: 2em;
}

.privacy-policy h2 {
  font-size: 1.5em;
  margin-top: 20px;
}

.privacy-policy p {
  margin-top: 10px;
  line-height: 1.5;
}

.privacy-policy ul {
  margin-top: 10px;
  padding-left: 20px;
}

.privacy-policy ul li {
  margin-top: 5px;
}

/* Footer styles */
/* Footer styles */
.footer {
  padding: 30px 10px 0px 10px;
  z-index: 999;color: #2f2f2f;
  background-color: #202020;
  border-top: 1px solid #000000;
  width: 100%;
  margin: 0;
}

.footer_nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.nav_con {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.nav_con img{
  width: 180px;
}

.nav_con h2 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 400;
  color: white;
}

.nav_ul.extra {
  column-count: 2;
  column-gap: 40px;
}

.nav_item {
  margin-top: 20px;
}

.nav_item h2 {
  font-weight: 400;
  font-size: 26px;
  color: white;
}

.nav_con a {
  color: #e3ab23;
  margin: 5px 0;
}

.footer p {
  margin: 10px 0;
  font-style: normal;
  color: #dcdcdc;
}

.footer .nav_item a {
  margin: 10px 0;
  color: #efefef;
}

.footer .nav_item a:hover {
  margin: 10px 0;
  color: #ed751f;
}

.footer ul {
  margin-top: 30px;
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 32px;
}

.footer a {
  text-decoration: none;
}

.footer .legal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  padding: 10px 30px;
}

.footer .legal p {
  color: #eeeeee;
}

.footer .legal .links {
  display: flex;
  flex-direction: row;
}

.footer .legal .links a {
  font-size: 22px;
  background-color: #000000;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 2px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

.footer .legal .links a:hover {
  background-color: #ffa500; /* Change the background color to orange on hover */
  transition: background-color 0.3s;
}

@media (max-width: 768px) {
  header a,
  header .fa {
    font-size: 16px;
  }

  header h1 {
    font-size: 16px;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer {
    padding: 10px 10px 0px 10px;
  }

  .nav_con img{
    width: 140px;
  }

  .footer_nav {
    display: flex;
    flex-flow: column;
  }

  .nav_con {
    width: 100%;
  }

  .nav_con h1 {
    font-size: 30px;
  }

  .nav_con h2 {
    margin-top: 20px;
    font-size: 22px;
  }

  .nav_ul.extra {
    column-count: 1;
  }

  .nav_item {
    margin-top: 30px;
  }

  .nav_item h2 {
    font-weight: 400;
    font-size: 26px;
    color: white;
  }

  .footer .nav_item a {
    margin: 10px 0;
  }

  .footer .nav_item a:hover {
    margin: 10px 0;
    color: #ed751f;
  }

  .footer ul {
    margin-top: 10px;
  }

  .footer .legal {
    margin-top: 30px;
    padding: 10px 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .footer .legal p {
    color: #eeeeee;
  }

  .footer .legal .links {
    display: flex;
    flex-direction: row;
  }

  .footer .legal .links a {
    font-size: 24px;
    margin: 0;
  }
}
