/* === style.css === */

/* Reset & base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  color: #333;
  line-height: 1.6;
  overflow-y: auto;     /* allow scrolling */
  min-height: 100vh;    /* ensures content can grow */
}

/* Page container */
.container {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 420px;
  width: 90%;
  margin: 30px auto;
  text-align: center;
}

/* Headings */
h1 {
  color: #007bff;
  margin-bottom: 20px;
  font-size: 26px;
}
h2 {
  margin: 25px 0 10px;
  font-size: 20px;
  color: #333;
}

/* Form elements */
form {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="number"],
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

button,
.btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

button:hover,
.btn:hover {
  background: #0056b3;
}

/* Paragraphs and lists */
p {
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  margin: 10px 0 15px 20px;
  text-align: left;
}

/* Footer */
.footer-links {
  margin-top: 25px;
  font-size: 14px;
}
.footer-links a {
  color: #007bff;
  text-decoration: none;
  margin: 0 5px;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 15px;
  }
  h1 {
    font-size: 22px;
  }
}
