@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("background-image-4.jpg"); /* change image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 100px;
}

p:not(:last-child) {
    margin-bottom: 8px;
}

/* Dark overlay for better readability */
.overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.6); */
  background: rgb(255 255 255 / 65%);
}

.content {
  position: relative;
  text-align: center;
  color: #000;
  padding: 20px;
}

.logo {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 20px;
    right: 20px;
    margin: 0 auto;
    top: 30px;
}

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


.content h1{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0.9;
  font-family: "Bruno Ace", sans-serif;
}

.description {
    max-width: 1000px;
    margin: 0 auto;
}

.features-title{
  font-size: 30px;
  font-family: "Bruno Ace", sans-serif;
}

.features-list {
    text-align: center;
    max-width: 870px;
    margin: 20px auto 0;
}
ul.features {
    text-align: left;
    column-count: 2;
    break-inside: avoid;
    line-height: 1.5;
    margin-top: 20px;
    padding-left: 20px;
}
.for-inquiry{
  margin-top: 20px;
}
.for-inquiry h3{
  font-family: "Bruno Ace", sans-serif;
}
.contact {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-top: 10px;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.contact a {
  color: #000;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.bottom-content{
  position: absolute;
  bottom: 10px;
  color: #000;
  width: 100%;
  text-align: center;
}
/* Responsive */
@media (max-width: 767px) {
  body{
    font-size: 16px;
  }
  .content h1 {
    font-size: 32px;
  }
  .contact {
    font-size: 14px;
  }
  .features-title{
    font-size: 24px;
  }
  .features-list{
    max-width: 360px;
  }
  .features{
    column-count: 1 !important;
  }
}



/* New */

