/* General Styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/quote.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-y: auto; /* Allow scrolling for long content */
  font-family: "Trebuchet MS", sans-serif;
}



  
  /* Get Quote Section */
  .get-quote {
    padding: 20px;
  }
  
  .quote-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Form Styles */
  .quote-field {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
  }
  
  input[type="text"],
  input[type="email"],
  select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  select:focus {
    border-bottom: 2px solid #007BFF;
  }
  
  select {
    appearance: none;
    cursor: pointer;
  }
  
  .quote-submit {
    text-align: center;
    margin-top: 20px;
  }
  
  button {
    background-color: #007BFF;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }

  .lastdescription {
    font-family: "Trebuchet MS", sans-serif;
    padding: 50px;
    text-align: center;
    font-size: 14px; /* Smaller font size */
    color: #555; /* Grey color */
    margin: 0 auto;
    max-width: 800px; /* Center alignment with width restriction */
  }
  
  
  
  /* Responsive Design */
  @media (max-width: 600px) {
    h1 {
      font-size: 20px;
    }
  
    input[type="text"],
    input[type="email"],
    select {
      font-size: 14px;
    }
  
    button {
      width: 100%;
      padding: 14px;
      font-size: 18px;
    }
  }

  @media (max-width: 600px) {
    .lastdescription {
      padding: 20px; /* Reduced padding for smaller screens */
      font-size: 12px; /* Smaller font size for mobile */
    }
  }
  