/* Contact page styles */
.contact-content {
  padding: 3rem 0;
}

.contact-info, .contact-map {
  margin-bottom: 2rem;
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: #8B4513;
  font-size: 2rem;
}

.store-details-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.store-detail {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.store-detail h3 {
  margin-bottom: 1rem;
  color: #8B4513;
  font-size: 1.4rem;
}

.store-detail p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.store-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.contact-methods {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  clear: both;
}

.contact-methods h3 {
  margin-bottom: 1rem;
  color: #8B4513;
  font-size: 1.4rem;
}

.contact-methods p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-map h3 {
  margin-bottom: 1rem;
  color: #8B4513;
  font-size: 1.4rem;
}

.contact-map img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.contact-map p {
  font-size: 1.1rem;
  text-align: center;
}

.join-section {
  padding: 3rem 0;
  background: #f9f5f0;
  border-radius: 10px;
  margin: 3rem 0;
}

.join-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #8B4513;
  font-size: 2rem;
}

.join-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.join-conditions,
.join-advantages {
  margin: 2rem 0;
}

.join-conditions h3,
.join-advantages h3 {
  margin-bottom: 1.5rem;
  color: #8B4513;
  font-size: 1.5rem;
}

.join-conditions ol {
  padding-left: 1.8rem;
}

.join-conditions li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.join-advantages ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.join-advantages li {
  padding: 1.2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Responsive design */
@media (max-width: 768px) {
  .contact-content {
    padding: 0.5rem 0;
  }

  .join-advantages ul {
    grid-template-columns: 1fr;
  }

  .store-details-container {
    flex-direction: column;
  }
}
