/* ---------------- General ---------------- */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body {
  background: #f7f4ef;
  color: #333;
  text-align: center;
  padding: 20px;
}

/* ---------------- Header ---------------- */
header {
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1rem;
  color: #555;
}

/* ---------------- Card Section ---------------- */
.legal-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.legal-cards .card {
  background: #fff8f0;
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  animation: fadeIn 1s ease-in;
}

.legal-cards .card:hover {
  transform: translateY(-5px);
}

.legal-cards .card h3 {
  margin-bottom: 15px;
  color: #2c2b28;
}

.legal-cards .card p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------------- Form ---------------- */
form input {
  padding: 12px;
  border-radius: 50px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 15px;
}

form button {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background: #f0a500;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #d18e00;
  transform: translateY(-2px);
}

/* ---------------- Footer ---------------- */
footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: #555;
}

/* ---------------- Animations ---------------- */
@keyframes fadeIn {
  0% {opacity:0; transform: translateY(-20px);}
  100% {opacity:1; transform: translateY(0);}
}
