.ozon-delivery-section-center {
    background-color: #f4f7ff;
    padding: 50px 20px;
    border-radius: 16px;
    margin: 40px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    text-align: center; /* Центрируем весь текст внутри секции */
  }

  .ozon-center-wrapper {
    max-width: 800px; /* Ограничиваем ширину, чтобы текст не растягивался слишком сильно */
    margin: 0 auto;   /* Центрируем сам блок */
    display: flex;
    flex-direction: column; /* Элементы друг под другом */
    align-items: center;    /* Центрируем элементы по горизонтали */
    gap: 20px;
  }

  .ozon-icon-circle {
    width: 70px;
    height: 70px;
    background: #005bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 91, 255, 0.3);
  }

  .ozon-icon-circle svg {
    width: 36px;
    height: 36px;
    fill: #ffffff;
  }

  .ozon-text-area h2 {
    margin: 0 0 10px 0;
    font-size: 26px;
    color: #000;
    font-weight: 700;
  }

  .ozon-text-area p {
    margin: 0;
    font-size: 17px;
    color: #555;
    line-height: 1.5;
    max-width: 600px; /* Чтобы строки текста не были слишком длинными */
  }

  .ozon-highlight {
    color: #005bff;
    font-weight: 700;
    font-size: 19px;
  }

  .ozon-btn-center {
    margin-top: 10px;
    background-color: #005bff;
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
  }

  .ozon-btn-center:hover {
    background-color: #0044cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 91, 255, 0.2);
  }