.contact-section {
  padding: 80px 20px;
  background: #f4f6f8;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
}

.contact-map {
  flex: 1;
  min-height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2C5C84;
}

.contact-text {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.contact-details li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.contact-details i {
  color: #2C5C84;
  font-size: 18px;
  min-width: 20px;
}

.contact-details a {
  color: #2C5C84;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  font-size: 22px;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2C5C84;
  transition: all 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
  background: #0056b3;
}
