section {
  padding: 60px 0;
}
section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section .container .section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
section .container .section-title h2 {
  font-size: 2rem;
  font-weight: 400;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
section .container .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #3a7bd5;
}
section .container h3 {
  margin-top: 30px;
  text-align: center;
  color: #3a7bd5;
}
section .container .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
section .container .services-grid .service-card {
  background-color: #1e263a;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
section .container .services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
section .container .services-grid .service-card .service-content {
  padding: 25px;
}
section .container .services-grid .service-card .service-content .service-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: rgb(119, 174, 247);
}
section .container .services-grid .service-card .service-content .service-description {
  color: #b3b3b3;
  margin-bottom: 15px;
}
section .container .services-grid .service-card .service-content .service-price {
  font-weight: 600;
  margin: 10px 0;
  color: #f5f5f5;
}
section .container .services-grid .service-card .service-content .link {
  color: #3a7bd5;
  text-decoration: none;
  transition: all 0.3s ease;
}
section .container .services-grid .service-card .service-content .link:hover {
  color: rgb(119, 174, 247);
  text-decoration: underline;
}

.other-services {
  background-color: #1e1e1e;
  padding: 60px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2rem;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
}
.info {
  color: #b3b3b3;
  text-align: center;
  margin-top: 40px;
}/*# sourceMappingURL=service.css.map */