@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

.btn {
  background-color: #4f46e5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
}

.section {
  text-align: center;
  padding: 4rem 1rem;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 9, 26, 0.8);  
  z-index: 0;
}

.section h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}

.content {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: auto;
  background-color: white;
}

.content p {
  margin-bottom: 1.5rem;
  text-align: center;
}

.content h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #15091A;
  font-size: 0.875rem;
  color: white;
}
