/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f9;
  color: #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background: #222;
  color: #fff;
  padding: 40px 20px;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
header p {
  font-size: 16px;
  opacity: 0.8;
}

/* Navigation */
nav {
  margin: 20px 0;
}
nav a {
  text-decoration: none;
  color: #007BFF;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}
nav a:hover {
  color: #0056b3;
}

/* Content Container */
.container {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.container:hover {
  transform: translateY(-5px);
}
.container h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}
.container p {
  font-size: 16px;
  opacity: 0.9;
}

/* Fix for Privacy Policy List Formatting */
.container ul {
  padding-left: 20px;
  list-style-type: disc;
}
.container ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Equal Height Cards */
.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.card {
  width: 90%;
  max-width: 600px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Footer */
footer {
  margin-top: auto;
  padding: 20px;
  background: #222;
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}

/* Privacy Policy Home Link */
nav a.home-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #007BFF;
  text-decoration: none;
}
nav a.home-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .container, .card {
    width: 90%;
  }
}
