/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header, main, footer {
  width: 100%;
}

/* Header Styling */
.header-container {
  text-align: center;
  padding: 20px;
  background-color: #4e73df;
  color: white;
}

.header-container h1 {
  margin: 0;
  font-size: 2.5rem;
}

.header-container p {
  margin: 10px 0;
  font-size: 1.2rem;
}

.header-container .btn {
  margin-top: 20px;
  display: inline-block;
}

/* Main Content Styling */
.content-container {
  flex: 1; /* Pushes footer to the bottom */
  text-align: center;
  padding: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* Buttons */
.btn {
  background-color: #4e73df;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #2c5de5;
  transform: scale(1.05);
}

/* Footer Styling */
.footer-banner {
  text-align: center;
  padding: 10px 0;
  background-color: #4e73df;
  color: white;
  font-size: 0.9rem;
  margin-top: auto; /* Ensures the footer stays at the bottom */
}

/* Navbar Styling */
.navbar {
  background-color: #4e73df;
  padding: 10px 0;
  text-align: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f1f1f1; /* Light blue on hover */
}

.nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid white;
}
