header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fc9012;
    color: white;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }

/* Contact Page Styles */
.contact-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #C0C0C0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-container h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.contact-form .contact-submit {
    padding: 12px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .contact-submit:hover {
    background-color: #0056b3;
}

/* Schedule a Quote Button */
.quote-button {
    text-align: center;
    margin-top: 20px;
}

.schedule-quote-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    color: #fff;
    background-color: #2C3E50;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.schedule-quote-button:hover {
    background-color: #007bff;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #fc9012;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f4f8;
  }
  
.cta-button:hover {
  background-color: #C0C0C0;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
  }
  
  footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  }
  
  footer .social-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .features-grid {
      flex-direction: column;
    }
  
    header {
      flex-direction: column;
      text-align: center;
    }
  }
  