@charset "utf-8";
/* CSS Document */




.no-bullets {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}





/* Buy */
.section6 {
  background-color: #f0f8ff;
  padding-top: 200px;
}

.buy-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.buy-content h2 {
  color: #a044ff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.buy-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.buy-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #d16ba5;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #b85590;
}

/* Rent */
.section7 {
  background-color: #fff3f3;
  padding-top: 200px;
}

.rent-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.rent-content h2 {
  color: #d16ba5;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rent-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.rent-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #86a8e7;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.rent-button:hover {
  background-color: #6f92d6;
}

/* Sell */
.section8 {
  background-color: #e6f6ec;
  padding-top: 200px;
}

.sell-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.sell-content h2 {
  color: #3cba92;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sell-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.sell-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3cba92;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.sell-button:hover {
  background-color: #319b7a;
}

/* Landlord */
.section9 {
  background-color: #f0f0ff;

}

.landlord-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.landlord-content h2 {
  color: #6b4eff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.landlord-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.landlord-services {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  text-align: left;
  max-width: 500px;
  color: #333;
  font-size: 1rem;
}

.landlord-services li {
  margin: 0.5rem 0;
}

.contact-cta {
  font-size: 1.1rem;
  font-weight: bold;
}

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

.contact-cta a:hover {
  text-decoration: underline;
}

/* Contact Us */
.contact-container {
  background-color: #f9f9f9;
  padding-top: 200px;
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.contact-details-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-info-box {
  flex: 1;
  min-width: 250px;
}

.contact-form {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #d16ba5;
  color: white;
  border: none;
  padding: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.contact-form button:hover {
  background-color: #a044ff;
}



















.landlord-images {
  display: flex;
  justify-content: space-between;

  margin: 2rem 0;
  flex-wrap: wrap;
}

.landlord-image {
  flex: 1 1 30%;
  max-width: 30%;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
}

.landlord-subsections {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.landlord-subsection {
  flex: 1 1 48%;
}

.landlord-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.cta-button.primary {
  background-color: #1e90ff;
  color: white;
}

.cta-button.secondary {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
}

.cta-button.tertiary {
  background-color: #4caf50;
  color: white;
}

