/* ---------------------------
   Global Styles
---------------------------- */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------------------------
   Hero Section
---------------------------- */
.hero {
  position: relative;
  background: url('/assets/index.png/client_testimonials_happy_customers-10.webp') no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.btn i {
  margin-right: 8px;
}

/* ---------------------------
   Main Content
---------------------------- */
.content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #007bff;
  display: flex;
  align-items: center;
}

.content h2 i {
  margin-right: 10px;
  color: #ff9800;
}

.content p {
  margin-bottom: 20px;
}

.content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.content ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.content ul li i {
  margin-right: 10px;
  color: #007bff;
}

/* ---------------------------
   Internal Links
---------------------------- */
.content a {
  color: #007bff;
  font-weight: 500;
}

.content a:hover {
  text-decoration: underline;
}



/* ---------------------------
   Responsive
---------------------------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    margin: 10px 0;
    width: 80%;
  }

  .content {
    margin: 20px auto;
    padding: 20px;
  }

  .content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
  }
}
