    body {
      font-family: 'Arial', sans-serif;
      background-color: #f7f7f7;
      padding: 20px;
      margin: 0;
    }

    .quotation-form {
  background-color: #fff;
  padding: 25px;
  width: 95%;
  max-width: 1000px;
  margin: 50px auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

    .quotation-form h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    .quotation-form label {
      display: block;
      margin: 10px 0 5px;
      font-weight: bold;
      color: #555;
    }

    .quotation-form select,
    .quotation-form textarea,
    .quotation-form input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
    }

    .quotation-form textarea {
      resize: vertical;
      min-height: 100px;
    }

    .quotation-form button {
      background-color: #ce2525;
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 8px;
      width: 100%;
      font-size: 16px;
      cursor: pointer;
      margin-top: 15px;
      transition: background 0.3s ease;
    }

    .quotation-form button:hover {
      background-color: #be0909;
    }

    .success-message {
      text-align: center;
      color: green;
      margin-top: 15px;
      display: none;
    }