body {
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: rgb(14, 44, 79);
  background: linear-gradient(
    to bottom,
    rgba(0, 120, 255, 0.2),
    rgba(0, 120, 255, 0.3),
    rgba(0, 120, 255, 0.4),
    rgba(0, 120, 255, 0.5),
    rgba(0, 120, 255, 0.6)
  );
}

.background {
  /* background: linear-gradient(
  to bottom,
  rgba(0, 120, 255, 0.2),
  rgba(0, 120, 255, 0.3),
  rgba(0, 120, 255, 0.4),
  rgba(0, 120, 255, 0.5),
  rgba(0, 120, 255, 0.6)
); */
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 40px 80px;
}

/* header {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  font-size: 24px;
  color: #9e9f9f;
}

header h1 span {
  font-weight: lighter;
} */

.main-content {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.left-section {
  flex: 1;
  padding-left: 80px;
  margin-top: 100px;
}

.left-section h2 {
  font-size: 58px;
  /* color: #686c70; */
  margin: 0;
  color: rgb(14, 44, 79);
  font-family: "Georgia", serif;
}

.left-section p {
  font-size: 20px;
  margin: 10px 0;
}

.contact-info {
  margin-top: 40px;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin: 5px 0;
  /* color: #7e8792; */
  color: rgb(14, 44, 79);
  opacity: 0.7;
}

.contact-info i {
  margin-right: 15px;
}

.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.map-placeholder {
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  color: #555;
  border-radius: 10px;
  padding: 10px;
}

.map-placeholder h1 {
  font-size: 24px;
  color: rgb(14, 44, 79);
  margin: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.social-icons a:hover {
  color: rgb(14, 44, 79);
}

.social-icons a {
margin: 0 10px;
text-decoration: none;
}

.social-icons img {
width: 40px;
height: 40px;
}

.olx {
  margin-top: 5px;
  border: 2px solid rgb(14, 44, 79);
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .container {
      padding: 20px 40px;
  }

  header {
      flex-direction: column;
      text-align: center;
  }

  header h1 {
      font-size: 15px;
  }

  .main-content {
      flex-direction: column;
      align-items: center;
  }

  .left-section {
      padding-left: 0;
      text-align: center;
      align-items: center;
      margin-top: 10px;
  }

  .left-section h2 {
      font-size: 20px;
  }

  .left-section p {
      font-size: 16px;
  }

  .map-placeholder {
      width: 350px;
      height: 400px;
      margin-top: 30px;
  }

  .map-placeholder h1 {
    font-size: 15px;
  }

  .social-icons {
      flex-direction: row;
      margin-top: 20px;
  }

  .social-icons a {
      margin: 10px;
  }

  .olx {
      width: 25px;
      height: 25px;
  }
}

@media screen and (max-width: 480px) {
  header h1 {
      font-size: 13px;
  }

  .left-section h2 {
    font-size: 18px;
  }

  .left-section p {
      font-size: 14px;
  }

  .map-placeholder {
      height: 400px;
  }

  .social-icons i, .social-icons img.olx {
      width: 25px;
      height: 25px;
  }
}
