body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f1e9, #e8d9c9);
  text-align: center;
  overflow-x: hidden;
  animation: softFade 3s infinite alternate;
}

@keyframes softFade {
  from { background-color: #f8f1e9; }
  to { background-color: #e8d9c9; }
}

.content {
  padding: 10px;
  animation: slideIn 1s ease-out;
  position: relative;
  max-width: 450px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
}

@keyframes slideIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.logo {
  width: 140px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 5px rgba(232, 217, 201, 0.6));
  transition: transform 0.5s;
}

.logo:hover {
  transform: rotate(5deg) scale(1.1);
}

h1 {
  font-size: 1.4em;
  color: #000000;
  font-weight: bold;
  margin: 5px 0;
  text-shadow: 1px 1px 2px rgba(248, 241, 233, 0.5);
}

h3 {
  font-size: 1em;
  color: #000000;
  font-weight: bold;
  margin: 2px 0;
}

.steps-chart {
  width: 100%;
  margin: 5px 0;
}

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

.step {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  font-weight: bold;
  padding: 6px 10px;
  margin: 2px 0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  width: 80%;
  font-size: 0.85em;
}

.step:hover {
  transform: scale(1.05);
}

.faq-chart {
  width: 100%;
  margin: 5px 0;
}

.faq-item {
  margin: 2px 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.faq-question {
  padding: 6px 10px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background: #f8f1e9;
  font-size: 0.85em;
}

.faq-answer {
  padding: 6px 10px;
  color: #000000;
  display: none;
  background: rgba(232, 217, 201, 0.3);
  font-size: 0.75em;
}

.faq-item.active .faq-answer {
  display: block;
}

.get-btn {
  display: inline-block;
  background: #8b4513;
  color: #ffffff;
  padding: 8px 15px;
  border: none;
  border-radius: 15px;
  font-size: 0.9em;
  font-weight: bold;
  cursor: pointer;
  margin: 5px 0 2px 0;
  width: 50%;
  box-shadow: 0 3px 8px rgba(139, 69, 19, 0.3);
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.get-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 10px rgba(139, 69, 19, 0.4);
}

.get-btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(248, 241, 233, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.get-btn:hover:before {
  width: 100px;
  height: 100px;
}

.notification {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(139, 69, 19, 0.9);
  color: #ffffff;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  display: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.8em;
  animation: popIn 0.5s ease-out;
  z-index: 1000;
  max-width: 90%;
  width: 70%;
}

@keyframes popIn {
  from { transform: translateX(-50%) scale(0.8); opacity: 0; }
  to { transform: translateX(-50%) scale(1); opacity: 1; }
}

@media (max-width: 480px) {
  .content {
    padding: 5px;
  }
  h1 {
    font-size: 1.1em;
  }
  h3 {
    font-size: 0.8em;
  }
  .steps-chart {
    margin: 2px 0;
  }
  .faq-chart {
    font-size: 0.7em;
  }
  .get-btn {
    font-size: 0.8em;
    padding: 6px 10px;
    width: 60%;
  }
  .logo {
    width: 110px;
  }
  .step {
    padding: 4px 8px;
    margin: 1px 0;
    width: 85%;
    font-size: 0.7em;
  }
  .notification {
    bottom: 1px;
    width: 75%;
    font-size: 0.7em;
  }
}
