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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 1s ease-out;
  max-width: 500px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
  /* width: 120px;
  height: 120px; */
  margin: 0 auto 30px;
  /* border: 2px solid #e9ecef; */
  /*border-radius: 12px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: #f8f9fa;*/
  position: relative;
  overflow: hidden;
}

.logo-placeholder {
  font-size: 14px;
  color: #6c757d;
  text-align: center;
  line-height: 1.4;
  padding: 10px;
}

.logo-image {
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
}

.title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.5;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 35%;
  height: 100%;
  background: #007bff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.contact-info {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #6c757d;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    margin: 15px;
    padding: 20px;
    width: 90%;
  }

  .title {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .logo-image {
    max-width: 200px;
    max-height: 200px;
  }

  .contact-info {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    margin: 10px;
    padding: 15px;
    width: 95%;
  }

  .title {
    font-size: 1.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .logo-image {
    max-width: 150px;
    max-height: 150px;
  }

  .progress-bar {
    margin: 15px auto 0;
  }

  .contact-info {
    margin-top: 20px;
  }
}

@media (max-height: 600px) {
  .container {
    padding: 15px;
  }

  .logo-image {
    max-width: 100px;
    max-height: 100px;
  }
}
