/* Gradient background wrapper (between sections) */
.gradient-background {
  background: transparent; 
}

/* Dark Sections (shared style) */
.dark-section {
  background-color: #202021;
  color: white;
  padding: 30px 0; /* Changed from 80px 0 */
  text-align: center;
}

/* Property Info Section */
.property-info {
  background-color: #202021;
  color: white;
  padding: 60px 0;
}

.property-info .container {
  max-width: 800px;
  margin: 0 auto;
}

.property-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.property-item.reverse {
  flex-direction: row-reverse;
}

.property-image {
  flex: 1;
  max-width: 50%;
  position: relative;
}

/* Property details */
.property-details {
  flex: 1;
  text-align: left;
  line-height: 1.6;
}
 
.property-details p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
}

.property-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-details li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}
