.find-us-container {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.find-left,
.find-right {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  font-family: "Fredoka", sans-serif;
}

.find-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.find-left .hours,
.find-left .faqs {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.find-left .contact-link {
  color: #ff1e1e;
  text-decoration: underline;
  font-weight: 600;
}

.find-left .contact-link:hover {
  text-decoration: none;
}

.find-left .store-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.find-right .map-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.find-right iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.address-info {
  padding: 1.5rem;
}

.address-info h3,
.address-info h4 {
  margin-bottom: 0.5rem;
}

.address-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .find-us-container {
    flex-direction: column;
  }

  .find-left,
  .find-right {
    width: 100%;
  }
}
