* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
}

.service-page {
  width: 100%;
  max-width: 500px;
  margin: auto;
  margin-top: 20px;
}

.form-section {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
  margin-bottom: 20px;
  color: black;
  font-size: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form select,
form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
}

form input[type="file"] {
  padding: 3px;
}

.btnsave {
  background-color: #feba17;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 10px auto;
  width: 50%;
  display: block;
  text-align: center;
}

.btnsave:hover {
  background-color: #a00b36;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .form-section {
    padding: 15px;
  }

  .btnsave {
    max-width: 100%;
    font-size: 15px;
  }
}
