body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #f37021;
  color: white;
  padding-top: 0;
  padding-bottom: 10px ;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info-top {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap onto multiple lines if necessary */
  justify-content: center; /* Centers the items horizontally */
  align-items: center; /* Aligns items vertically in the center */
  background-color: white;
  color: #696867;
  padding: 10px;
  width: 100%;
  text-align: center;
}

.contact-info-top p {
  display: flex;
  align-items: center;
  margin: 5px 15px;
}

.contact-info-top p img{
  margin-right: 5px;
  width: 20px; /* Adjust the size as needed */
  height: 20px; /* Adjust the size as needed */
}

.contact-info-top a {
  color: #696867;
  text-decoration: none;
}

.contact-info-top a:hover {
  color: #161af1;
}

header h1 img {
  max-width: 100%;
  height: auto;
}

nav {
  margin-top: 10px;
}

/* Add dropdown menu */
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for mobile view */
  
}

nav ul li {
  position: relative;
  margin: 5px 10px; /* Add some margin for spacing */
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: x-large;
}

nav ul li a:hover {
  color: #161af1;
}

nav ul li .dropdown-toggle::after {
  content: " \2304"; /* Unicode escape sequence for downward arrowhead */
  font-size: 1em;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease; /* Smooth transition for movement */
}

nav ul li:hover .dropdown-toggle::after {
  transform: translateY(3px); /* Move the arrow down on hover */
}

nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rbga(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px; /* Round corners */
}

nav .dropdown-content a {
  color: #696867;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
}

nav .dropdown-content a:hover {
  color: #161af1; /* Text color change an hover */
  text-decoration: none;
}

nav li:hover .dropdown-content {
  display: block;
}

main {
  padding: 0px;
  background-color: #ffffff;
}

h2 {
  text-align: center;
  margin-top: 0px;
  padding-top: 50px;
  font-size: 2em; /* Adjust the value to make the font size larger as desired */
  color: #c74c00;
}

section {
  margin-bottom: 0px;
}

.skylux-broker {
  font-size: xx-large;
  background-color: #ffffff;
}

.skylux-brokers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: x-large;
}

.skylux-broker-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border-color: #f37021;
  border-width: 0.5em;
  border-style: solid;
  object-fit: cover;
  margin-bottom: 10px;
}

.skylux-description {
  text-align: justify;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.skylux-description h2 {
  margin: 10px 0 5px;
  font-size: 2em;
  color: #f37021;
}
.highlight-description {
  color: #161af1;
}
.skylux-description p {
  margin: 10px 0;
}

.skylux-description ul {
  padding-left: 20px;
}
.skylux-description ul li {
  list-style: disc;
  margin: 30px 0;
}

.footer-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 100px;
  padding-right: 100px;
  background-color: #0089d0;
}

.contact-info {
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info p {
  color: #ffffff;
}

.contact-info img {
  margin: 10px;
}

.contact-text p {
  text-align: left;
  color: #f5f4f3;
  display: flex;
}

.contact-text a:hover {
  color: #ccc;
}

.contact-text p img {
  margin-right: 5px;
  width: 20px; /* Adjust the size as needed */
  height: 20px; /* Adjust the size as needed */
  
}

.contact-text a {
  color: #ffffff;
  text-decoration: none;
}

.contact-info p {
  margin: 5px 0;
}

.social-media-info {
  margin: 0 10px;
}

.social-media-info img {
  width: 50px;
  height: auto;
  vertical-align: middle;
}

.logIn p a {
  text-align: center;
  padding: 20px;
  color: #ccc;
}

.logIn a:hover {
  color: #f37021;
}

/* Media Queries for Tablet and iPad in landscape Mode*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles for tablets and iPads */
  header h1 img {
    width: 100%;
    height: auto;
  }

  .contact-info-top {
    display: none;
  }

  nav ul {
    flex-wrap: nowrap;
  }

  nav ul li {
    margin: 10px 20; /* Increase vertical spacing for navigation items */
  }

  nav ul li a {
    font-size: large;
    margin: 5px 0;
  }

  .skylux-broker {
    font-size: large;
    padding: 20px;
  }

  .skylux-brokers {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .skylux-broker-image img{
    width: 250px;
    height: 250px;
  }

  .skylux-description {
    padding: 20px;
    font-size: medium;
  }
}

/* Media Queries for Tablet and iPad in Portrait Mode*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait)  {
  /* Styles for tablets and iPads */
  header h1 img {
    width: 100%;
    height: auto;
  }

  .contact-info-top {
    display: none;
  }

  nav ul {
    flex-wrap: nowrap;
  }

  nav ul li {
    margin: 10px 20; /* Increase vertical spacing for navigation items */
  }

  nav ul li a {
    font-size: large;
    margin: 5px 0;
  }
  .skylux-broker {
    font-size: large;
    padding: 20px;
  }

  .skylux-brokers {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .skylux-broker-image img{
    width: 250px;
    height: 250px;
  }

  .skylux-description {
    padding: 20px;
    font-size: medium;
  }
}

/* Styles for other tablets or devices with widths between 600px and 900px */
@media only screen and (min-width: 600px) and (max-width: 900px) {
  /* Styles for other tablets */
  header h1 img {
    width: 100%;
    height: auto;
  }

  .contact-info-top {
    display: none;
  }

  nav ul {
    flex-wrap: nowrap;
  }

  nav ul li {
    margin: 10px 20; /* Increase vertical spacing for navigation items */
  }

  nav ul li a {
    font-size: large;
    margin: 5px 0;
  }
  .skylux-broker {
    font-size: large;
    padding: 20px;
  }

  .skylux-brokers {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .skylux-broker-image img{
    width: 250px;
    height: 250px;
  }

  .skylux-description {
    padding: 20px;
    font-size: medium;
  }
}

/* Media Queries for Mobile Devices */
@media only screen and (max-width: 480px) {
  header h1 img {
    width: 100%;
    height: auto;
  }

  .contact-info-top {
    display: none;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li a {
    font-size: large;
    margin: 5px 0;
  }

  .skylux-broker {
    font-size: large;
    padding: 20px;
  }

  .skylux-brokers {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .skylux-broker-image img{
    width: 250px;
    height: 250px;
  }

  .skylux-description {
    padding: 20px;
    font-size: medium;
  }

}
