body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #fafafa;
  color: #fff;
}

header {
  background: rgba(13, 27, 42, 0.8);

}
.site-header {
  background: #1e1b30;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
	width: 140px;
	height: 130px;
}

.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #d97706; /* gold accent */
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e1b30;
  margin-bottom: 2rem;
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.testimonial h3 {
  color: #222;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.testimonial p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial time {
  font-size: 0.9rem;
  color: #999;
}

.testimonial video,
.testimonial audio {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 1rem 0;
  border-radius: 8px;
}

.checkbox {
  margin-top: 1rem;
}

.checkbox label {
  font-size: 0.95rem;
  color: #555;
}

