body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #EAE4D5;
  color: #333;
}

.about-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/interior.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.about-hero p {
  font-size: 18px;
  margin-bottom: 25px;
}
.btn {
  background-color: #594100;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #695a32;
}

.about-content .container {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}
.about-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.about-text p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-values {
  background: #f9f5f1;
  padding: 60px 20px;
}
.about-values .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 400px;
  text-align: center;
}
.value-card h3 {
  color: #594100;
  margin-bottom: 10px;
}
