body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
}
header {
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
}
.container {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h2 {
  margin-top: 0;
}
footer {
  text-align: center;
  padding: 10px;
  background: #333;
  color: white;
}

/* Form Styles */
.form-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.form-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box; /* Important for width: 100% */
}
.form-group textarea {
  height: 100px;
  resize: vertical;
}
button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
button[type="submit"]:hover {
  background-color: #555;
}
