main {
  display: block;
}

main article {
  width: 70%;
  margin: 30px auto;
}

main article h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

main article h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

main article h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

main article img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

main article p {
  font-size: 18px;
  line-height: 1.6;
  color: rgb(50, 50, 50);
  margin-bottom: 20px;
}

main article ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

main article ul li {
  font-size: 18px;
  line-height: 1.6;
  color: rgb(50, 50, 50);
}

.hizmet-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 0;
  margin-top: 30px;
  margin-bottom: 50px;
}

.hizmet-con a {
  width: 48%;
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: 20px;
}

.hizmet-con a img {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hizmet-con a:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.hizmet-con a h2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: white;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, #1994ff 0%, #007cf0 45%, #0052d4 100%);
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
  margin-bottom: 0;
}

@media screen and (max-width:1200px) {
  main article {
    width: 90%;
  }
}

@media screen and (max-width:980px) {
  main article h1 {
    font-size: 28px;
  }

  main article h2 {
    font-size: 24px;
  }

  main article h3 {
    font-size: 20px;
  }

  main article p {
    font-size: 16px;
    line-height: 1.4;
  }

  main article ul li {
    font-size: 16px;
    line-height: 1.4;
  }

  .hizmet-con a {
    width: 100%;
    height: 200px;
  }

  .hizmet-con a img {
    height: 200px;
  }

  .hizmet-con a h2 {
    padding: 10px 5px;
    font-size: 16px;
  }
}