* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #6b46c1;
  --secondary-color: #3b82f6;
  --text-color: #ffffff;
}
body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}
.contact-container {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #102955 0%, #102955 50%, #102955 100%);
}
.contact-info, .map-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.contact-info {
  padding: 4rem;
  justify-content: center;
  color: var(--text-color);
  background: rgba(0, 0, 0, 0.1);
}
.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  position: relative;
  color: white;
}
.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--text-color);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.contact-details svg {
  flex-shrink: 0;
  stroke: var(--text-color);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }
  .contact-info, .map-container {
      min-height: 50vh;
      padding: 2rem;
  }
  .contact-info h2 {
      font-size: 2rem;
      text-align: center;
  }
  .contact-info h2::after {
      left: 50%;
      transform: translateX(-50%);
  }
  .contact-details {
      align-items: center;
      text-align: center;
  }
  .contact-details p {
      flex-direction: column;
      text-align: center;
      max-width: 300px;
  }
  .contact-details svg {
      margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-info, .map-container {
      padding: 1.5rem;
  }
  .contact-info h2 {
      font-size: 1.8rem;
  }
  .contact-details p {
      font-size: 0.9rem;
  }
}
.hover-lift {
  transition: transform 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-10px);
}