* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 20px;
  position: relative;
  background-image: url(/img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
a {
  text-decoration: none;
}
.question-container {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.question-container:hover {
  transform: translateY(-5px);
}

.question-title {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.question-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.options-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.option-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-btn.yes {
  background-color: #4ecdc4;
  color: white;
}

.option-btn.no {
  background-color: #ff6b6b;
  color: white;
}

.option-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.option-btn:active {
  transform: translateY(1px);
}

.option-btn.yes:hover {
  background-color: #3db8af;
}

.option-btn.no:hover {
  background-color: #e55a5a;
}

/* Адаптивность */
@media (max-width: 600px) {
  .question-container {
    padding: 30px 20px;
  }

  .question-title {
    font-size: 1.5rem;
  }

  .options-container {
    flex-direction: column;
    align-items: center;
  }

  .option-btn {
    width: 100%;
    max-width: 250px;
  }
}
.privacy {
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  color: #ffffff;
}
