body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.detail-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

h1 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.detail-info table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.detail-info th {
  color: #1e40af;
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.detail-info td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.detail-info th {
  background-color: #f2f2f2;
  width: 30%;
}

.detail-map {
  margin-bottom: 20px;
}

.detail-map img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.map-frame-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 харьцаа */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.map-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.detail-contact {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
}

.detail-contact p {
  margin: 8px 0;
}