* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #FFE5B4 0%, #87CEEB 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo h2 {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
  color: white;
  padding: 150px 0 80px;
  text-align: center;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.page-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}

.overview-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.overview-content h2 {
  color: #8B4513;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.overview-content p {
  color: #654321;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Main Services */
.main-services {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 80px 0;
  margin: 40px 20px;
  border-radius: 20px;
}

.main-services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8B4513;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  transition: all 0.3s;
  border-top: 4px solid #FF8C00;
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.service-card.featured {
  border-top-color: #FF6B6B;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  color: #8B4513;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card p {
  color: #654321;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: #FF8C00;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Service Process */
.service-process {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}

.service-process h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8B4513;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid #FF8C00;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.step-number {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #8B4513;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #654321;
  line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 80px 0;
  margin: 40px 20px;
  border-radius: 20px;
}

.service-benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8B4513;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  transition: all 0.3s;
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.benefit-card h3 {
  color: #8B4513;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #654321;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background: white;
  color: #FF8C00;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: #F0F8FF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #FF8C00;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: rgba(139, 69, 19, 0.9);
  color: white;
  padding: 60px 0 20px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #FFD700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #FFF8DC;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: #FFF8DC;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .services-overview,
  .main-services,
  .service-process,
  .service-benefits,
  .cta-section {
    margin: 20px 10px;
  }
}