* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f7fcff, #dfefff);
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 420px;
  width: 100%;
}

h1 {
  color: #007acc;
  margin-bottom: 10px;
  text-align: center;
}
.icon-small {
  width: 50px;         /* Adjust size as needed */
  height: 50px;
  vertical-align: middle;  /* Aligns with text */
  margin-right: 16px;       /* Space between icon and text */
}


p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

label {
  display: block;
  margin-top: 15px;
  color: #333;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #007acc;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #005fa3;
}

#result {
  margin-top: 20px;
  font-size: 17px;
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 22px;
  }
}
section {
      background-color: #f2f6ff;
      padding: 25px;
      margin: 30px auto;
      max-width: 850px;
      border-radius: 12px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    }

    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;
    }