/* Shared Footer Styles */
.contact-footer {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  z-index: 10;
  clear: both;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-contact {
  font-family: 'Urbanist';
  font-size: 60px;
  font-weight: normal;
  margin: 0;
  color: #333;
  letter-spacing: -2px;
}

.footer-left h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 4rem;
  font-weight: normal;
  margin: 0;
  color: #333;
  letter-spacing: -2px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 300px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #C1326E;
}