
body.home-page {
  background: url('../images/main back.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

.logo-header {
  text-align: center;
  padding-top: 20px;
}

.logo-header img {
  max-width: 400px;
  height: auto;
}

.main-intro {
  background-color: rgba(0, 0, 0, 0.6);
  margin: 40px auto;
  padding: 30px;
  max-width: 700px;
  border-radius: 10px;
}

.main-intro h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.main-intro p {
  font-size: 18px;
  margin-bottom: 30px;
}

.quote-button {
  background-color: #1a73e8;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
}

.quote-button:hover {
  background-color: #155bc0;
}
body.quote-page {
  background: url('../images/quote back.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.95);
  max-width: 500px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
}

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

form textarea {
  height: 120px;
  resize: vertical;
}

form button {
  background-color: #1a73e8;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #155bc0;
}