body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

header {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  padding: 30px;
  text-align: center;
}

nav {
  background: #222;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #00d4ff;
}

.card {
  background: white;
  margin: 20px auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card a {
  display: block;
  margin: 8px 0;
  color: #1e3c72;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background: #1e3c72;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px;
}
/* Community Section */
.community {
  text-align: center;
}

.primary-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.primary-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* Social Media */
.social {
  text-align: center;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 12px;
  transition: transform 0.3s ease;
}

.social-icons img {
  width: 40px;
  height: 40px;
}

.social-icons a:hover {
  transform: translateY(-6px) scale(1.1);
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.footer strong {
  color: #fff;
}
