/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Hero Section */
.hero {
  background-image: url('https://images.unsplash.com/photo-1581093588401-4ffb5f1d1749'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  text-align: center;
  color: #fff;
  width: 100%;
}

.overlay h1 {
  font-size: 3rem;
  font-weight: 700;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 1rem;
}

.breadcrumb a {
  color: #d1d1d1;
  text-decoration: none;
}

.breadcrumb span {
  color: #ffffff;
}

/* Services Section */
.services-section {
  padding: 4rem 8rem;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.services-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

#title{
  font-size:3.2rem;
  font-weight: 800;
  color: rgb(26, 25, 25);
}
#main_text{
  margin-top: 2rem;
  text-align: center;
  font-weight: 400;
  font-size: 1.1rem;
  color: #817f7f;
}
/* Responsive */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2.2rem;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .services-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .overlay {
    padding: 1rem;
  }

  .overlay h1 {
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }
}
