main {
  margin-bottom: 48px;
  padding-left: 5vw;
  padding-right: 5vw;
}

.contact-hero {
  text-align: center;
  padding: 4rem 0;
  background: var(--gradient-bg);
  color: white;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-infocard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.opening-hours {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  margin-top: 3rem;
}

.opening-hours h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hours-grid {
  display: grid;
  gap: 0.5rem;
}

.day {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.day:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}
