.service-support-header-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b6def6;
  padding: 20px;
  gap: 25px;
}

.service-support-header-content {
  max-width: 50%;
  padding: 20px;
}

.service-support-header-content h1 {
  font-family: "CustomFont-Semi-Bold";
  font-size: 2.5rem;
  color: #0f4568;
  margin-bottom: 10px;
}

.service-support-header-content p {
  font-family: "CustomFont-Regular";
  font-size: 2rem;
  line-height: 1.5;
  color: #0f4568;
}

.service-support-header-image img {
  width: auto;
  max-width: 600px;
  height: auto;
}

.service-support-consultancy {
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 1100px;
  border-radius: 8px;
}

.service-support-consultancy-content h1 {
  font-family: "CustomFont-Semi-Bold";
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: left;
}

.service-support-consultancy-content p {
  font-family: "CustomFont-Regular";
  font-size: 1rem;
  line-height: 2.5;
  margin-bottom: 20px;
  color: #4a4a4a;
  text-align: justify;
}

.service-support-consultancy-image img {
  width: 60%;
  margin: auto;
  display: block;
}

/* Services Section */
.service-support-services {
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 1100px;
}

.service-support-services-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-support-service h2 {
  font-family: "CustomFont-Semi-Bold";
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.service-support-service p {
font-family: "CustomFont-Regular";
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

@media screen and (max-width: 768px) {
  .service-support-header-section {
    flex-direction: column;
    text-align: center;
  }

  .service-support-header-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .service-support-header-image img {
    max-width: 80%;
  }
}

.two-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.two-column-section {
  display: flex;
  gap: 40px;
  align-items: center;
}

.two-column-section .column {
  flex: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0px 3px 9px rgba(0,0,0,0.07);
}
