@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.about_section {
  width: 100%;
  padding: 80px 0;
  background-color: #f3f5ee;
}

.about_container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about_text {
  flex: 1 1 400px;
}

.about_text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.about_text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.about_text button {
  background-color: #b3002d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.about_text button:hover {
  background-color: #dbd0db;
  color: #b3002d;
}

.about_image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.about_image img {
  width: 100%;
  max-width: 450px;
  border-radius: 30px;
  transition: transform 0.3s ease-in-out;
}

.about_image img:hover {
  transform: scale(0.9);
}