/* Reset and base setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: #f5f8fc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Wrapper to vertically center everything */
.center-wrapper {
  max-width: 1000px;
  width: 100%;
  padding: 20px;
}

/* Logo Section */
.banner {
  margin-bottom: 30px;
}

.logo {
  max-width: 80%;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Contact Info Section */
.contact-section {
  background: linear-gradient(to right, #005baa, #003f7d);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-card i {
  font-size: 20px;
  color: #ffd700;
}

.contact-card a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-card a:hover {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
