  .promotion-image {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .promotion-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 10px 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -10px;
  }

  .promotion-title {
    color: #002d4b;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .highlight {
    color: #002d4b;
    font-weight: bold;
  }

  .promotion-details {
    color: #555;
    font-size: 22px;
    line-height: 1.6;
    padding: 10px 0;
  }

  strong {
    color: #FFBA5A;
    padding: 6px 10px;
    border: 2px dashed #FFBA5A;
    display: inline-block;
    font-size: 1rem;
    margin-top: 6px;
  }

  .hide { display: none; }
  .popbox { position: fixed; top: 0; left: 0; bottom: 0; width: 100%; z-index: 1000000; }
  .pop-content {
    width: 500px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.5);
  }
  .popcontent {
    width: 100%;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .pop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
  }

  .popbox-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
  }
.strong {
  color: #002d4b; /* Цвет текста */
  border: none; /* Убираем рамку */
}
  @media (max-width: 600px) {
    .pop-content { width: 90%; }
    .promotion-title { font-size: 20px; }
    .promotion-details { font-size: 16px; }
  }

  .popbox-close-button svg { vertical-align: middle; }
