.service-page {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 60px clamp(16px, 5vw, 120px);
}

.service-text {
  flex: 1;
  text-align: left; /* LIJEVO poravnanje teksta */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-text h1,
.service-text h3 {
  margin-bottom: 16px;
}

.service-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-text ul {
  align-self: flex-start;
  padding-left: 20px; /* uredan popis */
}

.service-text h1{
  text-align: center;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.service-text p{
  color: black;
}
.service-icons {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.service-icons img {
  width: 100%;
  max-width: 900px; /* nikad veće od ekrana */
  height: auto;
  display: block;
}



/* Responsive */
@media (max-width: 768px) {
  .service-page {
    flex-direction: column;
  }
  .service-icons {
    padding: 40px 5%;
  }
 .service-icons img {
  max-width: 100%;
  width: 100%;
  height: auto;
}


}

