body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}
header {
  background: #1a0033;
  padding: 0.5rem 0;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 1.5rem;
}
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: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #b8001c;
  color: #FFD700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26,0,51,0.15);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  margin-top: 1rem;
}
.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.floating-cta .cta-btn {
  background: #b8001c;
  color: #FFD700;
  padding: 0.8rem 1.8rem;
  font-size: 1.1rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.15);
}
.services {
  background: #fff;
  color: #1a0033;
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
}
.services h2 {
  color: #1a0033;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-list h3 {
  color: #b8001c;
  margin-top: 2rem;
  font-size: 1.3rem;
}
.service-list ul {
  margin-bottom: 1.5rem;
}
.seo-content h3 {
  color: #1a0033;
  margin-top: 2rem;
  font-size: 1.2rem;
}
.seo-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.reviews {
  background: #f7f7f7;
  padding: 3rem 1rem;
  color: #1a0033;
}
.reviews h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.review-list blockquote {
  background: #fff;
  border-left: 5px solid #FFD700;
  margin: 1.5rem auto;
  padding: 1rem 2rem;
  max-width: 700px;
  font-style: italic;
  color: #1a0033;
  box-shadow: 0 2px 8px rgba(26,0,51,0.07);
}
.review-list footer {
  font-size: 1rem;
  color: #b8001c;
  margin-top: 0.5rem;
}
.contact {
  background: #fff;
  padding: 3rem 1rem;
  max-width: 700px;
  margin: auto;
  color: #1a0033;
}
.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact label {
  font-weight: 700;
  color: #1a0033;
}
.contact input, .contact select, .contact textarea {
  padding: 0.7rem;
  border: 1px solid #1a0033;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.contact .cta-btn {
  align-self: flex-start;
  margin-top: 1rem;
}
.contact-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.1rem;
}
footer {
  background: #1a0033;
  color: #FFD700;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .services, .contact {
    padding: 2rem 0.5rem;
  }
}
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .service-list ul, .seo-content p {
    font-size: 0.98rem;
  }
  .review-list blockquote {
    padding: 1rem;
  }
  .contact form {
    gap: 0.7rem;
  }
}
