/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffcc33, #ff9900);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 10px;
}

.container {
  background-color: white;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #FF4500;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 15px;
  font-size: 1.5rem;
}

.content {
  padding: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.content p {
  margin-bottom: 15px;
}

.highlight {
  font-size: 1.2rem;
  background: linear-gradient(90deg, #FF4500, #FF9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.important {
  margin-top: 10px;
  font-weight: 600;
}

.blue {
  color: #003366;
}

.btn {
  display: inline-flex;
  align-items: center;
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn i {
  margin-right: 8px;
}

.btn:hover {
  background-color: #128C7E; /* Darker WhatsApp Green */
}

.footer {
  background-color: #e0e7f1;
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #4A4A4A;
  font-weight: 500;
  border-top: 2px solid #c7d2e5;
}
