*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-page {
  width: 100%;
  max-width: 1140px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 32px);
}

.card {
  width: 100%;
  max-width: 720px;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 50px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.card__title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}

.card__subtitle {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  line-height: 1.4;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  max-width: 380px;
  margin: 20px auto 0;
  padding-top: 20px;
}

.card__actions .btn {
  flex: 1 1 calc(50% - 6px);
  min-width: 132px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px 16px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--accept {
  background-color: #11b92f;
}

.btn--accept:hover {
  background-color: #0fa328;
}

.btn--refuse {
  background-color: #ef4444;
}

.btn--refuse:hover {
  background-color: #dc2626;
}

@media (max-width: 767px) {
  .card {
    padding: 40px 10px;
  }

  .card__actions {
    max-width: 500px;
  }

  .btn {
    border-radius: 10px;
    padding: 15px 32px;
  }
}

@media (min-width: 768px) {
  .card {
    padding: 50px 20px;
  }
}
