body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #130250;
  color: #333;
}

.hero {
  background: url('bg-home.jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  color: #fff;
  background: #028f14;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #005f46;
}

.btn.secondary {
  background: #555;
  margin-right: 10px;
}

section.how-it-works {
  padding: 60px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.step {
  background: #fff;
  padding: 20px;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.cta {
  margin-top: 20px;
}




.form-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form p {
  text-align: center;
}

form a {
  color: #007B5E;
  text-decoration: none;
}

form a:hover {
  text-decoration: underline;
}




/* Header */
header {
  background-color: #62007b;
  padding: 15px 0;
  color: #000000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.logo a {
  color: #000000;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.navbar ul li a:hover {
  text-decoration: underline;
}

/* Main content area */
main {
  padding: 30px 20px;
  max-width: 1100px;
  margin: auto;
}

body {
    font-family: Arial, sans-serif;
    background: #2b0670;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #028f14;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, button {
    padding: 10px;
    font-size: 16px;
}

button {
    background: #028f14;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #007b5e;
}

footer {
  display: flex;
  justify-content: center;   /* Center horizontally */
  align-items: center;       /* Center vertically if footer has height */
  text-align: center;
  padding: 20px;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
}


/* TEST CSS CODE*/

/* Toggle button */
.toggle-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: green;
}

/* Mobile view */
@media (max-width: 768px) {
  .toggle-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #130250;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }
}
