body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #232a34 0%, #2e3c50 100%);
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  backdrop-filter: blur(2px);
}

header {
  background: rgba(40, 60, 90, 0.55);
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(120%);
}

h1 {
  margin: 0;
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.subtitle {
  color: #aeefff;
  font-size: 1.15rem;
  margin-top: 0.7rem;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.10);
}

main {
  max-width: 820px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.18);
}

section {
  margin-bottom: 2.7rem;
}

h2 {
  color: #aeefff;
  margin-bottom: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.10);
}

a {
  color: #aeefff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}
ul {
  padding-left: 1.2rem;
}
li {
  margin-bottom: 0.7rem;
}

/* Testimonials Section */
#testimonials {
  margin-bottom: 2.5rem;
}
blockquote {
  background: rgba(255,255,255,0.13);
  border-left: 4px solid #aeefff;
  margin: 1.5rem 0;
  padding: 1.1rem 1.7rem;
  border-radius: 10px;
  font-style: italic;
  color: #e0f7fa;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(8px) saturate(120%);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
blockquote footer {
  color: #b0c4d4;
  font-size: 0.97em;
  margin-top: 0.5rem;
  text-align: right;
}
