/* Full-width dark background panel under the header */
.services-panel {
  width: 100%;
  background-color: #1a1a1a;
  padding: 80px 0;
}

/* Gold-boxed content area - now 85% width, centered */
.services-panel .services-wrapper {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px;
  text-align: left;
  border: 2px solid #ffd700;
  border-radius: 12px;
  background-color: #222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

/* Main title */
.services-panel .services-wrapper h1 {
  font-size: 3.5rem;
  color: #ffd700;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Each service block */
.services-panel .service-block {
  margin-bottom: 3.5rem;
}

/* Section subheadings */
.services-panel .service-block h2 {
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

/* Paragraphs */
.services-panel .service-block p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #f1f1f1;
  max-width: 850px;
  margin: 0 auto;
}

/* Lists inside service blocks */
.services-panel .service-block ul,
.services-panel .service-block ol {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  padding-left: 1.5rem;
  color: #ddd;
  font-size: 1.2rem;
  line-height: 1.8;
}

.services-panel .service-block li {
  margin-bottom: 0.75rem;
}

/* Responsive tweaks for mobile */
@media (max-width: 768px) {
  .services-panel .services-wrapper {
    width: 90%;
    padding: 30px 20px;
  }

  .services-panel .services-wrapper h1 {
    font-size: 2.5rem;
  }

  .services-panel .service-block h2 {
    font-size: 1.8rem;
  }

  .services-panel .service-block p,
  .services-panel .service-block ul,
  .services-panel .service-block ol {
    font-size: 1.05rem;
    line-height: 1.7;
  }
}
