body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #faf9f6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

/* Reuse from index navbar */
.navbar-brand-outline {
  border: 2px solid #333;
  color: #333;
  padding: 5px 14px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-brand-outline:hover {
  border-color: #0d6efd;
  color: #0d6efd;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center .nav-link {
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.nav-center .nav-link:hover {
  color: #0d6efd;
}

.nav-center .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #0d6efd;
  left: 0;
  bottom: -4px;
  transition: 0.3s ease;
}

.nav-center .nav-link:hover::after {
  width: 100%;
}

.nav-right .nav-link {
  font-weight: 500;
}

.logo {
  width: 140px;
  height: auto;
}

h1 {
  font-size: 2rem;
  margin-top: 0;
}

span {
  color: rgb(126, 10, 33);
}

.title-image1 {
  float: left;
  width: 260px;
  height: auto;
  border-radius: 10px;
  margin: 0 24px 16px 0;
}

.title-image2 {
  float: right;
  width: 260px;
  height: auto;
  border-radius: 10px;
  margin: 0 24px 16px 0;
}

.card {
  overflow: auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}

footer {
  text-align: center;
  color: black;
  font-size: 0.95rem;
  padding: 24px;
  border-top: 1px solid #ddd;
  background-color: #f5f5f5;
  clear: both;
}

@media (max-width: 768px) {
  .title-image1,
  .title-image2 {
    float: none;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
  }

  .nav-center {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 10px;
  }
}
