body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a0033;
}
header {
  background: #1a0033;
  color: #FFD700;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
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 {
  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;
}
.hero-content h1 {
  font-size: 3rem;
  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.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(26,0,51,0.1);
}
.cta-btn:hover {
  background: #FFD700;
  color: #1a0033;
}
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8001c;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(26,0,51,0.2);
  z-index: 200;
  font-size: 1.1rem;
  font-weight: 700;
  animation: float 2s infinite alternate;
}
.floating-cta a {
  color: #fff;
  text-decoration: none;
}
.floating-cta span {
  font-weight: 900;
  letter-spacing: 1px;
}
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.services-section {
  background: #fff;
  color: #1a0033;
  padding: 4rem 2rem 2rem 2rem;
}
.services-section h2 {
  color: #1a0033;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #f7f7fa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.07);
  padding: 2rem;
  flex: 1 1 320px;
  max-width: 400px;
  min-width: 280px;
  margin-bottom: 2rem;
  border-left: 6px solid #FFD700;
}
.service-card h3 {
  color: #b8001c;
  margin-top: 0;
}
.reviews-section {
  background: #f7f7fa;
  color: #1a0033;
  padding: 4rem 2rem 2rem 2rem;
}
.reviews-section h2 {
  color: #1a0033;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,0,51,0.07);
  padding: 2rem;
  flex: 1 1 320px;
  max-width: 400px;
  min-width: 280px;
  margin-bottom: 2rem;
  border-left: 6px solid #FFD700;
}
.review-card h4 {
  color: #b8001c;
  margin-top: 0;
}
.contact-section {
  background: #1a0033;
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
}
.contact-section h2 {
  color: #FFD700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-section input, .contact-section textarea {
  padding: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.contact-section button {
  background: #b8001c;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-section button:hover {
  background: #FFD700;
  color: #1a0033;
}
.footer-content {
  background: #1a0033;
  color: #FFD700;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .service-list, .review-list {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .floating-cta {
    right: 10px;
    bottom: 10px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}
