/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #f0f2f5, #ffffff);
  color: #333;
  line-height: 1.6;
}

/* Header Navigation */
header {
  background-color: #1e40af;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 1.8rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active {
  font-weight: 800;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 2rem;
  background: #f8fafc;
}

.hero h2 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
}

/* Section Content */
.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section h3 {
  color: #1e40af;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Price List */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-item {
  background: white;
  border-left: 5px solid #3b82f6;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
}

/* Important Info */
.important-info {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.important-info h4 {
  color: #92400e;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.important-info ul {
  list-style: none;
  padding-left: 0;
}

.important-info li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.important-info li::before {
  content: '•';
  color: #f59e0b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Footer */
footer {
  background-color: #1e3a8a;
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Responsive for Small Screens */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #1e40af;
    width: 100%;
    padding: 1rem 0;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.review {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.rating-summary ul {
  list-style: none;
  padding: 0;
}
.rating-summary ul li {
  margin: 0.3rem 0;
}

