@media screen and (min-width: 0rem) {
    .service .image {
        display: none;

    }
    .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;
        
    }

    .service .primary-button {
        margin-top: 32px;
    }
}
@media screen and (min-width: 64rem) {
    .service {
        display: flex;
        /* display: grid;
        grid-template-columns: repeat(2, 1fr); */
        gap: 60px;
    }

    .service .image {
        display: block;
        width: 100%;
        border-radius: 12px;
    }

    .service-content {
        width: 90%;
    }
}