body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}
header {
  background: #1a0033;
  padding: 0;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 2rem;
}
nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #fff;
}
.hero {
  background: linear-gradient(135deg, #1a0033 70%, #FFD700 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 700px;
  margin: auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #b8001c;
  color: #FFD700;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  transition: background 0.2s, color 0.2s;
  border: none;
  display: inline-block;
}
.cta-btn:hover {
  background: #FFD700;
  color: #b8001c;
}
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}
.floating-cta .cta-btn {
  background: #b8001c;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.15);
}
.services, .reviews, .contact {
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: auto;
}
.services h2, .reviews h2, .contact h2 {
  color: #1a0033;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
footer {
  background: #1a0033;
  color: #FFD700;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .hero h1 { font-size: 2.2rem; }
  .hero h2 { font-size: 1.3rem; }
  nav ul li { margin: 0 1rem; }
}
@media (max-width: 600px) {
  .hero-content { padding: 0 1rem; }
  .services, .reviews, .contact { padding: 2rem 0.5rem; }
  .floating-cta { right: 12px; bottom: 12px; }
}
