body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #f9fafc;
  color: #333;
}

.copyright-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #eef2f8);
}

.copyright-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.copyright-container h1 {
  color: #0a4fa8;
  font-size: 2rem;
  margin-bottom: 15px;
}

.copyright-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.content-box {
  background: #f3f7ff;
  border-left: 5px solid #0a4fa8;
  border-radius: 10px;
  padding: 20px;
  margin-top: 25px;
  text-align: left;
}

.content-box h2 {
  color: #0a4fa8;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.content-box a {
  color: #0a4fa8;
  text-decoration: none;
  font-weight: 600;
}

.content-box a:hover {
  text-decoration: underline;
}

/* ✅ Back Button */
.back-btn-container {
  margin-top: 30px;
  text-align: center;
}

.back-btn {
  display: inline-block;
  background-color: #0a4fa8;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-btn:hover {
  background-color: #083c82;
  transform: scale(1.05);
}
