

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }
  
  .material-icons-outlined {
    vertical-align: middle;
    line-height: 1px;
  }
  
  .navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand > .material-icons-outlined {
    font-size: 40px;
    color: #007bff;
  }
  
  .nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.2s ease-in-out;
  }
  
  .nav-link:hover {
    color: #007bff;
  }
  
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("images/hero-bg.jpg") center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .btn-primary,
  .btn-outline-primary {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  }
  
  .btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  .btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
  }
  
  .btn-outline-primary:hover {
    background-color: #007bff;
    color: #ffffff;
  }
  
  .about > .material-icons-outlined {
    font-size: 50px;
    color: #007bff;
  }
  
  .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-body {
    padding: 2rem;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
  }
  
  .card-text {
    color: #666;
  }
  
  .card > img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 150px;
    width: 100%;
    object-fit: cover;
  }
  
  .testimonial > img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
  }
  
  #map {
    height: 300px;
    border-radius: 10px;
  }
  
  footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
  }
  
  footer a {
    color: #ffffff;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  .form-control {
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  
  .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .btn-primary,
  .btn-outline-primary {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  }
  
  .btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  .btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
  }
  
  .btn-outline-primary:hover {
    background-color: #007bff;
    color: #ffffff;
  }
  
  .contact-form-section {
    padding: 60px 0;
  }
  
  .contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .contact-form-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .contact-form-header p {
    font-size: 1.125rem;
    color: #666;
  }
  