.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 150px;
  margin-bottom: 120px;
}

.hero {
  background-color: #13204c;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

.service-info {
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image {
  flex: 1;
}

.main-image {
  width: 100%;
  height: 600px;
  display: block;
}

.service-text {
  flex: 1;
  padding: 2rem;
}

.service-text h2 {
  color: #13204c;
  margin-bottom: 1rem;
}

.service-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-text ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.service-text li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-text li:before {
  content: "•";
  color: #c5a208;
  font-size: 1.2em;
  position: absolute;
  left: 0;
}

.info-button {
  background-color: #c5a208;
  color: #13204c;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.info-button:hover {
  background-color: #d9b30d;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

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

  .hero p {
    font-size: 1rem;
  }

  .service-info {
    flex-direction: column;
  }

  .service-image,
  .service-text {
    flex: auto;
  }
}
