  body, html {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #888483;
      color: #333;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
    }

    .bgimg {
      background-image: url("./images/1.jpeg");
      background-size: cover;
      background-position: center;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: black;
     
    }

    .service-img, .team-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 12px;
    }
    
    .section {
      padding: 48px 16px;
    }

    .section:nth-child(even) {
      background-color: #fff;
    }

    .section:nth-child(odd) {
      background-color: #f0f0f0;
    }

    .team-member {
      text-align: center;
      margin-bottom: 32px;
    }

    .floating-contact-button {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background-color: #009688;
      color: white;
      padding: 16px 24px;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s;
      z-index: 1000;
    }

    .floating-contact-button:hover {
      background-color: #00796b;
    }

    .social-icons {
      margin-top: 8px;
    }

    .social-icons a {
      margin: 0 8px;
      text-decoration: none;
      display: inline-block;
    }

    .social-icons svg {
      width: 24px;
      height: 24px;
      fill: #333;
      transition: fill 0.3s;
    }

    .social-icons a:hover svg {
      fill: #009688;
    }
   