.section-bottom {
  border: 3px solid #2FA875; 
  border-radius: 8px; 
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;

  .section-bottom__title {
    width: 100%;
    height: 50px;
    padding: 18px 0px;  
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--natural-CCCCCC, #CCC);
  }

  .section-bottom__title img {
    width: 160px;
    height: 20px;
  }

  .section-bottom__body {
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-self: stretch;
    gap: 30px;
  }

  .body__image {
    vertical-align: middle;
  }

  .body__image-wrapper {
    background-repeat: no-repeat;
    width: 180px;
    height: 180px;
    background-size: cover;
    border-radius: 90px;
  }

  .body-content__office {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    padding-bottom: 10px;
  }

  .body__content--office-name {
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    padding-bottom: 10px;
  }

  .body__content--lawer-name span {
    font-weight: 400;
  }

  .body__content--description {
    color: #808080;
    font-size: 14px;
    line-height: 26px;
  }

  .body__content--cta {
    margin-top: 15px;
    text-align: left;
  
    .cta-button {
      display: inline-flex; 
      align-items: center; 
      background-color: #FAFAFA; 
      color: #666; 
      font-size: 14px;
      font-weight: 500;
      padding: 12px 10px 12px 24px;
      border-radius: 5px; 
      border: 1px solid #B4B4B4; 
      gap: 10px; 
      text-decoration: none; 
    }

    .cta-button img.cta-icon { 
      width: 100%; 
      height: auto; 
    }
  }

  @media screen and (max-width: 768px) {
    .section-bottom__body {
      padding: 20px;
      display: flex; 
      flex-direction: column; 
      align-items: flex-start; 
    }

    .body__image {
      width: 100%; 
      text-align: center; 
    }

    .body__image-wrapper {
      width: 170px; 
      height: 170px;
      margin: 0 auto; 
    }

    .body__content {
      display: block; 
      text-align: center; 
    }

    .body__content--office-name {
      font-size: 16px; 
    }

    .body__content--lawer-name {
      font-size: 13px; 
    }

    .body__content--description {
      font-size: 12px; 
      text-align: left;
    }
    .body__content--cta {
      text-align: center; 

      .cta-button {
        background-color: #2FA875; 
        border: none; 
        color: #fff; 
      }

      .cta-button img.cta-icon { 
        content: url('<?php echo get_template_directory_uri(); ?>/img/m-icon-white.jpg');
      }
    }
  }
}
