body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #1a1e2c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 450px;
  padding: 20px;
  box-sizing: border-box;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: #3e4459;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #fdd22e;
  border-radius: 4px;
  animation: fillProgressBar 1.5s ease-out forwards;
}

@keyframes fillProgressBar {
  from {
    width: 0%;
  }

  to {
    width: 25%;
  }
}

.content {
  width: 100%;
}

.content h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.content p strong {
  font-weight: 700;
  color: #fdd22e;
}

.angel-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 15px;
  margin-bottom: 25px;
}

.cta-button {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #fdd22e;
  color: #1a1e2c;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 0;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  animation: pulse-shadow 2s infinite;
}

.cta-button:hover {
  background-color: #e8bf1a;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 212, 46, 0.667);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(253, 210, 46, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(253, 210, 46, 0);
  }
}

.footer {
  width: 100%;
  background-color: #1a1e2c;
  color: #a9a9a9;
  padding: 30px 20px;
  box-sizing: border-box;
  font-size: 0.8rem;
}

.footer p {
  margin: 10px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer strong {
  color: #ffffff;
}

.footer .disclaimer {
  font-size: 0.7rem;
  line-height: 1.5;
  color: #7f7f7f;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

.footer a:hover {
  text-decoration: underline;
}