body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}

header {
  background: #1a0033;
  color: #FFD700;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #fff;
}

.hero-section {
  background: linear-gradient(135deg, #1a0033 80%, #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.2rem;
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #FFD700;
}
.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 2px 8px rgba(26,0,51,0.1);
  cursor: pointer;
}
.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(26,0,51,0.15);
  z-index: 9999;
  font-size: 1.1rem;
  font-weight: 700;
  animation: float 2s infinite alternate;
}
.floating-cta a {
  color: #fff;
  text-decoration: none;
}
.floating-cta span {
  color: #FFD700;
  font-weight: 700;
}
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.services-section, .reviews-section, .contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.services-section h2, .reviews-section h2, .contact-section h2 {
  color: #1a0033;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.services-section h3 {
  color: #b8001c;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.services-section ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
  color: #1a0033;
}
.services-section li {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}
.service-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.reviews-section .review {
  background: #f7f7fa;
  border-left: 5px solid #FFD700;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  color: #1a0033;
  box-shadow: 0 1px 4px rgba(26,0,51,0.04);
}
.reviews-section .review span {
  display: block;
  margin-top: 0.7rem;
  color: #b8001c;
  font-weight: 600;
}

.contact-section form {
  background: #f7f7fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(26,0,51,0.07);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact-section label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #1a0033;
}
.contact-section input, .contact-section select, .contact-section textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.contact-section button {
  width: 100%;
  margin-top: 0.5rem;
}
.contact-info {
  text-align: center;
  color: #1a0033;
}
.contact-info a {
  color: #b8001c;
  text-decoration: none;
  font-weight: 700;
}

footer {
  background: #1a0033;
  color: #FFD700;
  padding: 2rem 0 1rem 0;
  text-align: center;
}
.footer-content {
  max-width: 900px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 600;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  margin-top: 1rem;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .services-section, .reviews-section, .contact-section {
    padding: 2rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  nav ul {
    gap: 1rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
  .services-section, .reviews-section, .contact-section {
    padding: 1.2rem 0.2rem;
  }
  .contact-section form {
    padding: 1rem;
  }
}
