/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0a1f44; /* Deep blue background */
  color: white;
  text-align: center;
}

/* Header */
.header {
  padding: 80px 20px 40px;
  background: #0a1f44;
}
.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.header p {
  color: #c9d6f0;
  font-size: 1.1rem;
}

/* Downloader Section */
.downloader-section {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #102a5e;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  margin: 0 auto 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.downloader-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.downloader-box input {
  padding: 15px;
  border-radius: 30px;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  text-align: center;
}

.downloader-box button {
  background: #00c853;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.downloader-box button:hover {
  background: #00b045;
}

.note {
  margin-top: 15px;
  color: #bcd0ff;
}

/* How-To Section */
.how-to {
  padding: 60px 20px;
  background: #0d1e3b;
}

.how-to h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step h3 {
  color: #00c853;
}

.step p {
  color: #d6e0f5;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #081532;
  padding: 30px 20px;
  color: #bcd0ff;
  font-size: 0.9rem;
}

.footer a {
  color: #00c853;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: center;
  }
  .step {
    width: 30%;
  }
}












	


	

