/* ===== Service Page Specific Styles ===== */

.service-banner {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-bottom: 40px;
}

.service-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

/* Section Wrapper */
.service-highlight {
  background-color: #111;
  padding: 60px 20px;
  color: #fff;
}

/* Layout for Text + Image */
.service-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Text Content Styling */
.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h2 {
  color: red;
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-text h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-text ul li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.service-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: red;
  font-weight: bold;
}

/* Quote */
.service-quote {
  text-align: center;
  font-style: italic;
  color: #bbb;
  margin-top: 30px;
  font-size: 1.1rem;
}

/* Right-Side Image */
.service-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.service-image img {
  width: 100%;
  border: 3px solid red;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
    text-align: center;
  }

  .service-text,
  .service-image {
    width: 100%;
  }

  .service-text ul li {
    padding-left: 20px;
  }
}
