body {
  font-family: 'Poppins', sans-serif;
  color: #333333;
  background: #F9FCFE;
}

h1 {
  //color: #0B3D66;
  color: #2e628d;
  font-weight: 600;
}

.status-badge {
  background: #1FA3C8;
  color: #ffffff;
}

.countdown .time-box {
  background: #EEF7FB;
  color: #0B3D66;
}

/* MAIN CONTAINER */
.container {
  width: 100%;
}

/* HEADER SECTION */
.header {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  background: #ffffff;
}

/* IMAGE */
.image-section {
  flex: 1;
  background: #cfeefd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-section img {
  max-width: 90%;
  height: auto;
}

/* CONTENT */
.content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content h2 {
  color: #1fa3c8;
  margin-bottom: 5px;
}

.status-badge {
  background: #1fa3c8;
  color: #fff;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  margin: 15px 0;
  width: fit-content;
}

.intro {
  max-width: 500px;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.time-box {
  background: #eef7fb;
  padding: 15px;
  border-radius: 10px;
  width: 90px;
  text-align: center;
}

.time-box span {
  display: block;
  font-size: 22px;
  font-weight: bold;
}

/* INFO */
.info p {
  margin: 6px 0;
}

/* WHATSAPP */
.whatsapp a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}

/* FORM */
.form-section {
  background: #ffffff;
  padding: 40px;
  max-width: 480px;
}

.form-section h2 {
  margin-bottom: 20px;
  color: #0B3D66;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1FA3C8;
  box-shadow: 0 0 0 2px rgba(31,163,200,0.15);
}

button {
  width: 100%;
  padding: 14px;
  background: #1FA3C8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #1689a8;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: #555;
}


.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  padding: 8px 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 20px;
  background: #eef7fb;
  color: #1fa3c8;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #1fa3c8;
  color: #ffffff;
}


/* MAP */
.map {
  margin-top: 30px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  background: #eaf6fb;
  margin-top: 20px;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .header {
    flex-direction: column;
  }

  .content {
    padding: 30px 20px;
  }

  .countdown {
    flex-wrap: wrap;
  }
}
