  /*Location*/
  .service-block {
    width: 100%;
    border: 1px solid #ccc;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
  }

  .service-block img {
    width: 100%;
    aspect-ratio: 3 / 1; /* 📌 가로세로 비례 유지 */
    object-fit: cover;
    display: block;
  }

  .service-content {
    padding: 30px;
    text-align: center;
  }

  .heading-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .btn-link {
    font-weight: bold;
    text-decoration: underline;
    color: #1a1a3d;
  }
  .service-block.equal {
    height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ccc;
  }

  .service-block.equal img {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }

  .service-block.equal .service-content {
    height: 50%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }