/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to right, #f9d5ec, #fef3c7);
  color: #333;
  text-align: center;
  padding: 50px;
}

h1 {
  font-size: 3rem;
  color: #d63384;
  margin-bottom: 20px;
}

p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

button {
  background: linear-gradient(135deg, #ff69b4, #d63384);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

button:hover {
  background: linear-gradient(135deg, #d63384, #a61e64);
  transform: scale(1.05);
}

header {
  margin-bottom: 60px;
}

section {
  margin: 60px 0;
}

h2 {
  color: #d63384;
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

ol {
  list-style: decimal;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

footer {
  background: #fff0f6;
  padding: 40px;
  border-radius: 15px;
}
/* Mobile Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .feature-list {
    grid-template-columns: 1fr; /* stack features in one column */
  }

  ol {
    font-size: 1rem;
  }

  button {
    width: 100%;
    max-width: 250px;
  }
}
