.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.services-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-category {
  background-color: #8539393b;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.service-category h2 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #992c2c28;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.package {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: rgba(85, 34, 34, 0.671);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgb(0, 0, 0);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.package h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.package .price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #0066cc;
}

.package .features {
  margin-bottom: 1.5rem;
}

.package .features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.package .features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
}

.package .cta {
  display: block;
  text-align: center;
  background-color: #0066cc;
  color: white;
  padding: 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.package .cta:hover {
  background-color: #0052a3;
}

.process-steps {
  margin-top: 3rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-number {
  background-color: #0066cc;
  color: rgb(128, 69, 69);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.tech-tag {
  background-color: #1b16164b;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.testimonials {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #242121;
  border-radius: 8px;
}

.testimonial {
  font-style: italic;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgb(82, 55, 55);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgb(0, 0, 0);
}

.testimonial-author {
  font-weight: bold;
  text-align: right;
}

.cta-section {
  text-align: center;
  margin: 3rem 0;
  padding:1rem 2rem;
  background-color: #344a63cb;
  border-radius: 8px;
  box-align: center;
}

.cta-button {
  display: inline-block;
  background-color: #0066cc;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0052a3;
}