.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.section-title {
  width: 100%;
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.book-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #f3c009;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #ed9b27;
}

/* Responsive for phones and tablets */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content, .about-image {
    width: 100%;
  }

  .about-image img {
    margin-top: 20px;
  }

  .book-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.owner-section {
  padding: 40px 20px;
  background: #f8f8f8;
  text-align: center;
}

.owner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
  gap: 20px;
}

.owner-box img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.owner-info {
  max-width: 500px;
  text-align: left;
}

.owner-info h3 {
  margin-bottom: 5px;
  font-size: 24px;
  color: #333;
}

.owner-info p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .owner-info {
    text-align: center;
  }
}
