/* --- SERVICE */
@media screen and (min-width: 0rem) {
    .cs-service {
        margin-block: 60px;
        padding-inline: 24px;
        max-width: 32rem;
        margin-inline: auto;
        display: flex;
        flex-direction: row;
    }

    .cs-service .image {
        display: none;
        object-fit: cover;
        width: 100%;
        height: auto;
        clip-path: inset(0 1px 0 0);
    }

    .cs-service .description {
        line-height: 155%;
    }

    .cs-service .primary-button {
        margin-top: 48px;
    }
}
@media screen and (min-width: 64rem) {
    .cs-service {
        margin-block: 80px;
        max-width: 80rem;
        gap: 36px;
    }

    .cs-service-content {
        width: 100%;
        height: auto;
    }

    .cs-service .image {
        display: block;
        width: 100%;
    }

    .cs-service picture {
        width: 75%;
    }

    .cs-service img {
        border-radius: 20px;
    }

    .service-content-description {
        line-height: 180%;
    }

    .service-content-description h1, .service-content-description h2, .service-content-description h3, .service-content-description h4, .service-content-description h5 {
        font-weight: bold;
        margin: 2rem 0 1rem;
    }

     .service-content-description h4 {
        font-size: 1.25rem;
     }

    .service-content-description h5 {
        font-size: 1rem;
    }

    .service-content-description p {
        line-height: 1.7;
         margin: 1rem 0;
    }

    .service-content-description strong {
        font-weight: 700;
    }

    .service-content-description ul, .service-content-description ol {
        margin-left: 2rem;
        line-height: 2.2;
    }

    .service-content-description pre {
      background: #1e1e1e;
      color: #fff;
      padding: 1rem;
      overflow-x: auto;
      border-radius: 6px;
    }

    .service-content-description blockquote {
      border-left: 4px solid #ccc;
      padding-left: 1rem;
      color: #555;
      font-style: italic;
    }

    .service-content-description hr {
        margin-top: 32px;
        
    }
}