/* Services page: dotted background, POSH & HR sections */

/* Dotted background pattern (light grey dots) */
.services-dotted-bg {
  background-color: #f8f8f8;
  background-image: radial-gradient(circle, #d0d0d0 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  position: relative;
}

/* Hero / intro strip */
.services-hero {
  padding: 32px 0 40px;
  position: relative;
}

.services-hero .sec-title .title {
  color: #ED1C24;
}

.services-hero .sec-title .title:before {
  background-color: #ED1C24;
}

.services-hero-subheading {
  font-size: 20px;
  font-weight: 600;
  color: #231F20;
  margin: 8px 0 0 0;
  padding: 0;
}

.services-hero .intro-text {
  color: #555;
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
  margin-top: 12px;
}

/* POSH list in hero left column (fills space beside image) */
.services-hero-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  max-width: 640px;
}

.services-hero-list li {
  position: relative;
  padding: 5px 0 5px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.services-hero-list li:last-child {
  border-bottom: none;
}

.services-hero-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ED1C24;
}

.services-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Section card with dotted left area */
.services-section-block {
  padding: 36px 0 40px;
  position: relative;
}

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

.services-section-block:nth-child(odd) {
  background-color: #f8f8f8;
  background-image: radial-gradient(circle, #d0d0d0 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

.services-section-block .section-head {
  margin-bottom: 16px;
}

.services-section-block .section-head .title-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ED1C24;
  margin-right: 10px;
  vertical-align: middle;
}

.services-section-block .section-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: #231F20;
  margin: 0 0 12px 0;
  display: inline-block;
  vertical-align: middle;
}

.services-section-block .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-section-block .services-list li {
  position: relative;
  padding: 6px 0 6px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.services-section-block .services-list li:last-child {
  border-bottom: none;
}

.services-section-block .services-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ED1C24;
}

/* Two-column layout: content + image */
.services-two-col {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.services-two-col .content-col {
  flex: 1;
  min-width: 280px;
}

.services-two-col .image-col {
  flex: 0 0 380px;
  max-width: 100%;
}

.services-two-col .image-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .services-two-col {
    flex-direction: column;
    gap: 30px;
  }

  .services-two-col .image-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-section-block {
    padding: 28px 0 32px;
  }

  .services-section-block .section-head h2 {
    font-size: 24px;
  }

  .services-section-block .services-list li {
    font-size: 15px;
    padding-left: 28px;
  }
}

/* Scroll offset for fixed header */
.services-section-block[id],
.services-hero#posh-compliance-services {
  scroll-margin-top: 120px;
}

/* Second image block (inquiry): keep dotted background + image with red bar */
/* Dotted background comes from .services-dotted-bg on same section */
/* Red vertical bar next to image: .contact-form-section .image-coumn .inner-column .image:before in style.css */

.services-dotted-bg.contact-form-section {
  padding: 44px 0 56px;
}

/* CTA strip */
.services-cta {
  padding: 50px 0;
  background: #231F20;
  color: #fff;
  text-align: center;
}

.services-cta h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.services-cta .theme-btn {
  margin-top: 10px;
}
