body {
  font-family: 'Montserrat', sans-serif;
  margin: 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;
  padding: 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-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 1rem 2.5rem;
  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);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}

.hero-badges {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: #FFD700;
  color: #1a0033;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 2000;
  font-size: 1.1rem;
  font-weight: 700;
  animation: float 2s infinite alternate;
}

.floating-cta a {
  color: #fff;
  text-decoration: none;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

main {
  padding: 2.5rem 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;
}

.about-list {
  list-style: none;
  padding: 0;
  color: #1a0033;
}

.about-list li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.review {
  background: #f7f7fa;
  border-left: 5px solid #FFD700;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  flex: 1 1 250px;
  min-width: 220px;
  color: #1a0033;
}

.review span {
  display: block;
  margin-top: 0.5rem;
  color: #b8001c;
  font-weight: 600;
}

.review-cta {
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

.contact-info {
  text-align: center;
  color: #1a0033;
}

.contact-info a {
  color: #b8001c;
  text-decoration: none;
}

.footer-content {
  background: #1a0033;
  color: #fff;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  margin: 1rem 0;
}

.footer-legal {
  font-size: 0.95rem;
  color: #FFD700;
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
  }
  main {
    padding: 1.2rem 0.5rem 0 0.5rem;
  }
  .reviews {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0.7rem 0.5rem;
  }
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0.5rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
  .footer-content {
    padding: 1rem 0.2rem 0.7rem 0.2rem;
  }
}
