body {
    background-color: mintcream;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .card {
    max-width: 60em;
    flex-direction: row;
    background-color: #ffffff;
    border: 0;
    box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
    margin: 3em auto;
  }
  .card.dark {
    color: #000000;
  }
  .card.card.bg-light-subtle .card-title {
    color: dimgrey;
  }
  
  .card img {
    max-width: 25%;
    margin: auto;
    padding: 0.5em;
    border-radius: 0.7em;
  }
  .card-body {
    display: flex;
    justify-content: space-between;
  }
  .text-section {
    max-width: 60%;
  }
  .cta-section {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }
  .cta-section .btn {
    padding: 0.3em 0.5em;
    /* color: #696969; */
  }
  .card.bg-light-subtle .cta-section .btn {
    background-color: #ffffff;
    border-color: #ffffff;
  }
  @media screen and (max-width: 475px) {
    .card {
      font-size: 0.9em;
    }
  }

  .hover-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 0.5px solid transparent;
  }
  
  .hover-card:hover {
    transform: scale(1.01); /* Легкое увеличение */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  