/* Shared layout: header, footer, and main content container */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  width: 100px;
  display: flex;
  align-content: center;
}

.logo img {
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  right: 0;
  background: linear-gradient(90deg, #1c2473, #72d54a);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Main content container */
.content {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  margin: 0 auto 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
  color: #1c2473;
}

.content p {
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.content ul {
  margin: 0.5rem 0 1rem;
  padding-right: 1.2rem;
  color: #4b5563;
}

.content li {
  margin-bottom: 0.5rem;
}

.highlight {
  background: linear-gradient(
    135deg,
    rgba(28, 36, 117, 0.1),
    rgba(114, 213, 74, 0.1)
  );
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1e3a5f, #2c5530);
  color: white;
  text-align: center;
  padding: 3rem 0;
}

.footer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
  border-color: #72d54a;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .content {
    padding: 2rem;
  }
}
