* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #f0f2f5;
  color: #333;
  line-height: 1.6;
}
.container {
  max-width: 768px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.header {
  background-color: #e9f3f0;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
}
.header-content {
  color: #445a68;
  position: relative;
  z-index: 1;
}
.header h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.header p {
  color: #2575fc;
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  font-weight: bold;
}
.header-tag {
  display: inline-block;
  background: linear-gradient(
          135deg,
          rgba(255, 215, 0, 0.9),
          rgba(255, 165, 0, 0.8)
  );
  color: #2c5282;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.header-tag::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
          45deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite linear;
}
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
.content {
  background-color: #e9f3f0;
  padding: 1.5rem;
}
.benefit-box {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.benefit-box p {
  font-weight: bold;
  color: #2575fc;
}
.step {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #f7fafc;
  border-radius: 8px;
}
.step-number {
  background: #2c5282;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-weight: bold;
}
.cta-section {
  text-align: center;
  margin: 2rem 0;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #38b2ac 0%, #2c5282 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(56, 178, 172, 0.3);
  transition: transform 0.2s;
  font-size: 1.1rem;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(56, 178, 172, 0.4);
}
.disclaimer {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.footer {
  background: #679579;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}
.footer-links {
  margin-bottom: 1rem;
}
.footer-links a {
  color: #eee;
  text-decoration: none;
  font-size: 0.75rem;
}
.mx-small {
  margin: 0 0.5rem;
}
img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
html {
  height: 100%;
  font-size: 16px;
}
@keyframes pulse-animation {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@media (max-width: 240px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 241px) and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  html {
    font-size: 15px;
  }
}
