body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  line-height: 1.8;
  direction: rtl;
}

.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section h2 {
  text-align: center;
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 10px;
}

.section .subtitle {
  text-align: center;
  font-size: 18px;
  color: #aaa;
  margin-bottom: 50px;
}

.about-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}


.about-text {
  flex: 1 1 500px;
  text-align: right;
}

.about-text h3 {
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
  object-fit: cover;
}

.info-block {
  margin-bottom: 40px;
  text-align: right;
}

.info-block h3 {
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 10px;
}

.info-block p {
  font-size: 18px;
  color: #e0e0e0;
  margin: 0;
}

.villa-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.villa-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.05);
  text-align: right;
  transition: all 0.3s ease;
}

.villa-item:hover {
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
}

.villa-item h4 {
  margin-bottom: 10px;
  color: #d4af37;
  font-size: 20px;
}

.villa-item p {
  margin: 0;
  color: #ccc;
  font-size: 16px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
  .about-image img{
    height: 300px;
    width: 100%;
  }
}
