:root {
    --color-1: black;
    --color-2: black;
    --color-3: #8d989e;
    --color-4: #C17e40;
    --color-5: #D6ae92;
    --color-6: #E6d7c4;
  }

 
/* Float four columns side by side */
.prices-column {
    float: left;
    width: 50%;
    padding: 0 10px;
  }
  
  /* Remove extra left and right margins, due to padding in columns */
  .prices-row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .prices-row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the counter cards */
  .prices-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
    background-color: white;
    margin: 2%;
    height: 150px;
  }

  .prices-title h2 {
      color: var(--color-2);
      font-size: 1.45rem;
  }

  .prices-column p {
      font-size: 1.5rem;
  }


  
  /* Responsive columns - one column layout (vertical) on small screens */
  @media screen and (max-width: 850px) {
    .prices-column {
      width: 50%;
      display: block;
      margin-bottom: 20px;
    }
    .detail-card {
      height: 625px;
    }
  }
  
  @media screen and (max-width: 600px) {
    .prices-column {
      width: 100%;
    }
  }


  #service-details {
    margin-top: 3%;
    margin-bottom: 3%;
}

#service-details li {
    display: block!important;
} 
/* Float four columns side by side */
.detail-column {
    float: left;
    width: 50%;
    padding: 0 10px;
  }
  
  /* Remove extra left and right margins, due to padding in columns */
  .detail-row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .detail-row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the counter cards */
  .detail-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
    background-color: white;
    margin: 2%;
    height: 615px;
  }

  .detail-title h2 {
      color: var(--color-2);
      font-size: 1.45rem;
  }

  .detail-column p {
      font-size: 1.5rem;
  }


  
  /* Responsive columns - one column layout (vertical) on small screens */
  @media screen and (max-width: 850px) {
    .detail-column {
      width: 50%;
      display: block;
      margin-bottom: 20px;
    }
  }
  
  @media screen and (max-width: 700px) {
    .detail-column {
      width: 100%;
    }
  }