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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f4;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.coming-soon-container {
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-inner{
    padding: 10px;
}


.logo img {
  max-width: 150px;
  margin: 0 auto 20px auto;
  display: block;
}

h1 {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 15px;
}

h2 {
  font-size: 35px;
  color: #000;
  margin-bottom: 50px;
}

.contact-item{
    font-size: 18px;
    margin-bottom: 7px;
}

.contact-item a {
  color: #007BFF;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 30px;
  margin-top: 20px;
}

.social-icons a {
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007BFF;
}