body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1a0033;
}

header {
  background: #1a0033;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav-links li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #fff;
}

.hero-section {
  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: 0 auto;
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.hero-cta .cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(26,0,51,0.1);
}

.hero-cta .cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}

.hero-sub {
  font-size: 1rem;
  margin-top: 1.5rem;
  color: #FFD700;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 2000;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.2s;
}

.floating-cta a {
  color: #fff;
  text-decoration: none;
}

.floating-cta:hover {
  background: #FFD700;
  color: #1a0033;
}

main {
  padding: 2rem 1rem 0 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-section, .about-section, .reviews-section, .contact-section, .seo-section {
  margin-bottom: 3rem;
}

h2 {
  color: #1a0033;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h3 {
  color: #b8001c;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.service-list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: #1a0033;
  padding-left: 1.2rem;
}

.cta-section {
  text-align: center;
  margin: 2rem 0;
}

.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(26,0,51,0.08);
  cursor: pointer;
}

.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}

.about-list {
  list-style: disc inside;
  color: #1a0033;
  padding-left: 1.2rem;
}

.reviews-section .review {
  background: #f7f7fa;
  border-left: 5px solid #FFD700;
  margin-bottom: 1.2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: #1a0033;
  font-size: 1.05rem;
}

.reviews-section .review span {
  display: block;
  margin-top: 0.5rem;
  color: #b8001c;
  font-weight: 600;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem auto;
  background: #f7f7fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.05);
}

.contact-section label {
  font-weight: 600;
  color: #1a0033;
}

.contact-section input,
.contact-section textarea {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.contact-section button {
  align-self: flex-start;
}

.contact-info {
  text-align: center;
  color: #1a0033;
}

.seo-section {
  background: #fffbe6;
  border-radius: 10px;
  padding: 2rem;
  color: #1a0033;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
}

footer {
  background: #1a0033;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  font-size: 1rem;
}

.footer-content a {
  color: #FFD700;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  main {
    padding: 1rem 0.5rem 0 0.5rem;
  }
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .navbar {
    padding: 0.7rem 0.5rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
  .contact-section form {
    padding: 1rem;
  }
  .seo-section {
    padding: 1rem;
  }
}
