/* Services Section */
.services {
  width: 100vw;
  background: #ff9900;
  padding: 70px 20px 30px 20px;
  box-sizing: border-box;
  margin-top: 25px;
  margin-bottom: 30px;
}

.services-content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.services-image {
  display: block;
  margin-bottom: 30px;
}

.services-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.services-text-wrapper {
  width: 100%;
}

.services-title {
  color: #000000;
  font-family: 'TT Fors Trial Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 11.7vw;
  line-height: 1.32;
  text-align: left;
  margin: 0 0 40px 0;
  width: 100%;
  letter-spacing: 0.01em;
}

.services-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-item {
  color: #000000;
  font-family: 'TT Fors Trial Regular', Arial, sans-serif;
  font-weight: 400;
  font-size: 4.8vw;
  line-height: 1.54;
  text-align: left;
  margin: 0 0 20px 0;
  letter-spacing: 0.01em;
  width: 100%;
  word-break: break-word;
  white-space: normal;
  position: relative;
  padding-left: 20px;
}

.services-item:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 400;
  font-size: 2em;
  line-height: 0.5;
}

.services-item.no-bullet {
  padding-left: 0;
}

.services-item.no-bullet:before {
  content: none;
}

.services-item strong {
  font-weight: 600;
}

.services-item:last-child {
  margin-bottom: 0;
}

/* Desktop styles */
@media (min-width: 600px) {
  .services-title {
    font-size: 155px;
  }
  .services-item {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .services {
    padding: 80px 60px;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
  }
  .services-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .services-image {
    display: block;
    order: 1;
  }
  .services-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .services-text-wrapper {
    order: 2;
  }
  .services-title {
    font-size: 56px;
    font-weight: 300;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .services-item {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 25px;
  }
  .services-item:before {
    left: 0;
    top: 0;
    font-size: 2em;
    line-height: 0.5;
  }
  .services-item br {
    display: none;
  }
}

/* Services spacer */
.services-spacer {
  width: 100vw;
  height: 30px;
  background: #ff9900;
}

/* White spacer between button and services */
.white-spacer {
  width: 100vw;
  height: 30px;
  background: #ffffff;
}
