* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f9f9f9, #e3f2fd);
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

h1 {
  color: #3f51b5;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-top: 15px;
  color: #333;
  text-align: left;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #3f51b5;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #303f9f;
}

.countdown {
  margin-top: 25px;
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  background-color: rgb(203, 244, 203);
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }
}
.icon-small {
  width: 50px;         /* Adjust size as needed */
  height: 50px;
  vertical-align: middle;  /* Aligns with text */
  margin-right: 16px;       /* Space between icon and text */
}
 section {
      background-color: #fafafa;
      padding: 25px;
      margin: 30px auto;
      max-width: 850px;
      border-radius: 12px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.07);
    }

    h2 {
      color: #2c3e50;
      font-size: 26px;
      margin-bottom: 15px;
    }

    p, li {
      color: #333;
      font-size: 17px;
      line-height: 1.8;
      text-align: justify;
    }

    ol {
      padding-left: 20px;
    }