
.menu-container {
  margin-left: 240px; 
  padding: 1.5rem;
  background: #fff8f2;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.about-section {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6d4c41;
  margin-bottom: 1rem;
}

.about-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: #d7a86e;
  margin: 0.5rem 0 0 0;
  border-radius: 2px;
}

.about-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.img-container {
  flex: 1;
  max-width: 380px;
}

.img-owner {
  width: 100%;
  border-radius: 12px;
  border: 4px solid #fdfaf6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  object-fit: cover;
}

.p-about {
  flex: 2.5;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.map-container {
  margin-top: 2rem;
  width: 100%;
  padding: 0 10px; 
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-sizing: border-box;
}

.map-title {
  font-size: 2rem;
  font-weight: 600;
  color: #6d4c41;
  text-align: center;
}

.map-wrapper iframe {
  width: 100%;
  max-width: 100%; 
  height: 400px;
  border-radius: 12px;
  border: 3px solid #6d4c41;
  box-shadow: 0 6px 20px rgba(85, 41, 21, 0.3);
  display: block;
}


@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .img-owner {
    max-width: 250px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}


@media (max-width: 600px) {
  .img-owner {
    max-width: 100%;
  }

  .map-wrapper iframe {
    height: 200px;
  }
}
