body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0d0a0b;
  color: #f2f4f3;
}

/* Header */
.header {
  background-color: #343a40;
  padding: 20px 0;
  color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
  font-size: 28px;
  font-weight: 800;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.nav a {
  color: #dee2e6;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: #adb5bd;
}

/* Section */
.section {
  padding: 80px 20px;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
}

.lead {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ddd;
  line-height: 1.7;
}

.subsection {
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.subsection h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #f2f4f3;
}

.subsection p,
.subsection ul {
  font-size: 1rem;
  line-height: 1.8;
  color: #c0c5ce;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin: 20px auto;
  padding: 12px 28px;
  background-color: #00ffe0; /* Bright, modern aqua */
  color: #000; /* Text color */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none; /* No underline */
  border: 2px solid #00ffe0; /* Clear boundaries */
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 255, 224, 0.3);
}

.cta-button:hover {
  background-color: transparent;
  color: #00ffe0;
  border: 2px solid #00ffe0;
  box-shadow: 0 0 15px rgba(0, 255, 224, 0.5);
}

/* Footer */
.footer {
  background-color: #0d0a0b;
  color: #f2f4f3;
  padding: 20px 40px;
  border-top: 1px solid #454955;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-right a {
  color: #f2f4f3;
  margin-left: 15px;
  font-size: 16px;
  text-decoration: none;
}

.footer-right a:hover {
  color: #aaaaaa;
}
