body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f5ff;
  color: #222;
}
header {
  background: linear-gradient(135deg, rgb(181, 109, 0), #d8b000);
  color: #fff;
  padding: 1.2rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(106, 48, 147, 0.15);
}
main {
  padding: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.promo-slider {
  margin: 1.2rem 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(106, 48, 147, 0.1);
  overflow: hidden;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 240px;
  display: flex;
}
.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.slide.active {
  display: flex;
}
.slide img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.desc {
  font-size: 1.05rem;
  color: #444;
  text-align: center;
  padding: 0 0.5rem;
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0 0.7rem 0;
}
.slider-nav button {
  background: linear-gradient(135deg, #8a4baf, #6a3093);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(106, 48, 147, 0.2);
}
.slider-nav button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(106, 48, 147, 0.25);
}
.slider-nav button:active {
  background: #5a2580;
  transform: translateY(0);
}
.branches {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.branch {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(106, 48, 147, 0.08);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.branch:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(106, 48, 147, 0.12);
}
.branch-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  background: #f0ebf7;
  box-shadow: 0 4px 12px rgba(106, 48, 147, 0.1);
}
.branch-info h2 {
  margin: 0 0 0.4rem 0;
  font-size: 1.2rem;
  color: #6a3093;
  font-weight: 600;
}
.branch-info p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .slider-container {
    height: 180px;
  }
  .slide img {
    width: 140px;
    height: 140px;
  }
  .branch-img {
    width: 90px;
    height: 90px;
  }
  main {
    padding: 0.5rem;
  }
}

@media (min-width: 601px) {
  main {
    max-width: 600px;
  }
  .branch-img {
    width: 120px;
    height: 120px;
  }
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #4285F4;
  text-decoration: none;
  padding: 6px 12px;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #dadce0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.maps-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.maps-icon {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: #4285F4;
  font-size: 1.2rem;
  position: relative;
  top: -1px;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}