* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #F3F4FA;
  color: #1f2937;
  line-height: 1.6;
  /* background: linear-gradient(to bottom, #ffffff, #e5d9ff);
  background-size: cover;
  background-repeat: no-repeat; */
}

.effective {
  font-size: 10px;
}

.top-bar {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 24px;
}

.top-logo {
  height: 30px;
}

.main-container {
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.2rem;
  color: #111827;
  margin-top: 24px;
}

.subtitle {
  color: #6b7280;
  font-size: 1rem;
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

footer {
  margin-top: 60px;
  position: relative;
  background-image: url("./foot-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  text-align: center;
  /* overflow: hidden; */
  border-radius: 30px 30px 0 0;
}

.footer-overlay {
  position: relative;
}

.footer-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.footer-content {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

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

footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .card {
    padding: 20px;
  }

  .main-container {
    padding: 16px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .footer-content {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* === FOOTER HEIGHT AND FIT === */
footer {
  margin-top: auto;
  position: relative;
  height: 260px;
  background-color: #111;
  color: white;
  text-align: center;
  /* overflow: hidden; */
  display: flex;
  align-items: flex-end;
}

/* .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

.footer-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

html,
body {
  height: 100%;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
}
