* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Figtree", sans-serif;
  position: relative;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.logo-container {
  margin-bottom: 20px;
}

.logo {
  max-width: 300px;
  height: auto;
  display: block;
}

.contact-info {
  margin-top: 20px;
  background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eeeeee;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-text {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin: 0;
}

.contact-text strong {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.footer p {
  color: #1a1a1a;
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .logo {
    max-width: 250px;
  }

  .contact-info {
    padding: 25px 30px;
    margin: 20px 15px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-text strong {
    font-size: 18px;
  }

  .footer p {
    font-size: 12px;
  }
}
