/* Temel sıfırlama */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("https://cdn.payopi.tr/payopi-bucket/site/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Logo */
.logo {
  position: absolute;
  top: 40px;
  left: 150px;
  z-index: 1000;
}

.logo img {
  width: 200px;
  height: auto;
}

/* Ana İçerik */
.main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  gap: 40px;
}

/* Sol Görsel */
.left-section {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.body-image {
  max-width: 100%;
  height: auto;
}

/* Sağ Yazı */
.right-section {
  flex: 1 1 450px;
  color: white;
}

.text-group {
  max-width: 600px;
}

.heading-white {
  font-size: 40px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.heading-green {
  font-size: 40px;
  font-weight: bold;
  color: #5af263;
  margin-bottom: 20px;
}

.description-svg {
  width: 100%;
  max-width: 568px;
  height: auto;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.highlight {
  color: #5af263;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    top: 20px;
    left: 20px;
  }

  .main-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    height: auto;
  }

  .heading-white,
  .heading-green {
    font-size: 28px;
    text-align: center;
  }

  .contact-text {
    text-align: center;
    font-size: 16px;
  }

  .description-svg {
    max-width: 90%;
    margin: 0 auto 20px;
    display: block;
  }

  .text-group {
    text-align: center;
  }
}
