body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}

header {
  position: relative;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a0033;
  padding: 1rem 2rem;
}
.logo {
  color: #FFD700;
  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: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #FFD700;
}

.floating-cta {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #b8001c;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(26,0,51,0.15);
  z-index: 1000;
  text-decoration: none;
  transition: background 0.2s;
}
.floating-cta:hover {
  background: #FFD700;
  color: #1a0033;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0033 70%, #FFD700 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}
.hero-section h1 {
  font-size: 2.7rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: #FFD700;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #b8001c;
  color: #fff;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(26,0,51,0.10);
}
.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}

main {
  background: #fff;
  color: #1a0033;
}
.services-section, .reviews-section, .contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.services-section h2, .reviews-section h2, .contact-section h2 {
  color: #1a0033;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.services-section h3 {
  color: #b8001c;
  margin-top: 2rem;
  font-size: 1.3rem;
}
.services-section ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
  color: #1a0033;
}
.services-section li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.cta-box {
  text-align: center;
  margin: 2rem 0;
}
.service-content h4 {
  color: #1a0033;
  margin-top: 1.5rem;
  font-size: 1.15rem;
}
.service-content p, .service-content ul {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.reviews-section .review {
  background: #f7f7fa;
  border-left: 5px solid #FFD700;
  margin-bottom: 1.2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: #1a0033;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
}
.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;
  margin-bottom: 2rem;
  background: #f7f7fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
}
.contact-section label {
  font-weight: 600;
  color: #1a0033;
}
.contact-section input, .contact-section textarea {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.contact-section button {
  align-self: flex-start;
}
.contact-details {
  background: #fff;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.04);
  color: #1a0033;
}
.contact-details p {
  margin: 0.3rem 0;
  font-size: 1.05rem;
}

footer {
  background: #1a0033;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: 2rem;
}
.footer-content p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .services-section, .reviews-section, .contact-section {
    padding: 2rem 0.5rem;
  }
  .hero-content {
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .cta-btn, .floating-cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}
