
.section-heading {
  margin: 30px auto 0 auto;
  max-width: 1200px;
}
.service-card {
  display: flex;
  overflow: hidden;
  max-width: 1200px;
  margin:0px auto;
  gap: 2rem;
  padding: 60px 0;
  flex-wrap: wrap;
}

.image-text-container {
  flex: 1 1 50%;
}

.read-more-btn {
  padding: 0 20px;
  border-radius: 8px;
}
.read-more-btn:hover {
  background-color: #fafafa;
}

.image-text-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.text-container {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-container h4 {
  color: #004a99;
  margin-bottom: 1rem;
  font-weight: 600;
}

.text-container p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
}

.buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.75em 1.5em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 130px;
}

.btn.primary {
  background-color: #0050A4;
  color: #fff;
}

.btn.primary:hover {
  background-color: #003C7B;
  color: #fff;
}

.btn.secondary {
  border: 2px solid #0052cc;
  color: #0052cc;
  background-color: #fff;
}

.btn.secondary:hover {
  background-color: #0050A4;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1280px){
  .service-card {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1200px){
  .section-heading {
    padding: 0 25px;
  }
}
@media (max-width: 768px) {
  .service-card {
    flex-direction: column !important;
    padding: 1rem;
  }
  .read-more-btn {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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