body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f8fb;
  color: #333;
}

.contact-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
  text-align: center;
  color: #0066cc;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1em;
  margin: 10px 0;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 20px;
  text-align: center;
}

.social-links a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #004080;
}

.map {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .contact-info p {
    font-size: 1em;
  }
  .social-links a {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}
