.big-text-section {
  width: 100%;
  max-width: 1400px;
  margin: 25px 0 5px 0;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow-x: hidden;
}

.big-text-container {
  text-align: center;
  color: #111;
}

.big-text-container h2 {
  font-size: 36px;
  margin: 0px;
}

.big-text-container p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
}


.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.primary-button {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 123, 255, 0.8);
  /* постоянное свечение */
}

.primary-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.secondary-button {
  background-color: #28a745;
  color: #fff;
  box-shadow: 0 0 16px rgba(40, 167, 69, 0.8);
  /* постоянное свечение */
}

.secondary-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

:root {
  --shine-frequency: 5s;
  /* как часто повторяется */
}

.secondary-button {
  position: relative;
  overflow: hidden;
}

.secondary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine var(--shine-frequency) infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  20% {
    /* здесь руками задаём скорость */
    left: 125%;
  }

  100% {
    left: 125%;
  }
}


@media (max-width: 768px) {
  .big-text-section {
    width: auto;
    max-width: 100%;
    padding: 30px 20px;
    margin: 25px 0 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
  }

  .text-orange {
    font-size: 18px;
  }

  .big-text-container h2 {
    font-size: 24px;
  }

  .big-text-container p {
    font-size: 16px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .primary-button,
  .secondary-button {
    padding: 10px 20px;
    font-size: 16px;
  }
}
