/* =============================== */
/*         Services Section        */
/* =============================== */

.service-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
  }
  
  .service-section .content-wrapper {
    max-width: calc(var(--cw-text) * var(--cfactor));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .service-section h1 {
    font-size: calc(var(--headline) * var(--cfactor-f));
    font-weight: normal;
    margin-bottom: calc(var(--text-gap) * var(--cfactor));
    margin-top: 0;
  }
  
  .service-section p {
    text-align: left;
    font-size: calc(var(--text1) * var(--cfactor-f));
    line-height: calc(var(--text1-lh) * var(--cfactor-f));
    margin: 0;
  }
  
  .service-section .cta-button {
    align-self: center;
    margin-top: 75px;
  }

  @media screen and (max-width: 768px) {
    .service-section .content-wrapper {
      max-width: 80%;
      margin: 0 auto;
    }
  }