
  .content-block {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
  }

.image-section img {
  width: 480px;
  height: 770px;
  top: -20px;
  left: -40px;
  position: relative;
  border-radius: 10px;

}

.text-section {
    position: relative;
    width: 1000px;
    height: 400px;
    left: -90px;

    margin-bottom: 150px;
    color: var(--color-dark-black);
    margin-left: 10px;
    margin-right: -100px;
}

.text-section h2 {
font-size: 30px;
  line-height: 55px;
  font-weight: inherit;
  color: #000000;
  margin-bottom: 20px;
}

.cta-button {
    margin-top: 60px;
    position: relative;
    left: 150px;
    width: 509px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #A24B2C;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 25px;
    transition: background-color 0.3s;
}

.cta-button:hover {
background-color: #A24B2C;
}

/*--------------------------------------*/
@media (max-width: 1024px) {
  .content-block {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .image-section img {
    width: 400px;
    height: 650px;
    top: 0;
    left: 0;
  }

  .text-section {
    width: 90%;
    left: 0;
    margin-bottom: 50px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .text-section h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
}

  .cta-button {
    left: 0;
    width: 400px;
    height: 70px;
  }
}


@media (max-width: 768px) {
  .content-block {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .image-section img {
    display: none;

  }

  .text-section {
    width: 100%;
    margin-bottom: 30px;
  }

  .cta-button {
    width: 350px;
    height: 65px;
    font-size: 22px;
    margin: 5 auto;
  }
}


@media (max-width: 420px) {
  .content-block {
    padding: 0;
  }

  .image-section img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .text-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    font-size: 14px;
  }

  .text-section h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .cta-button {
    width: 300px;
    height: 60px;
    font-size: 18px;
    margin: 0 auto;
  }
}