 .advantages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 30px; /* Внутренние отступы */
    background-color: #f9f9f9;
  }

  .advantage-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(33.333% - 20px);
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .advantage-button:hover {
    transform: scale(1.05);
  }

  .button-filled {
    background-color: #2167AA;
    color: white;
    border: none;
  }

  .button-outline {
    background-color: white;
    color: #2167AA;
    border: 2px solid #2167AA;
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .advantage-button {
      width: calc(50% - 20px);
    }
  }

  @media (max-width: 480px) {
    .advantage-button {
      width: 100%;
    }
  }