.anestezi-blok {
  padding: 80px 0;
  background-color: #ffffff;
}

.anestezi-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 0 20px;
}

/* GÖRSEL ALANI */
.anestezi-image {
  flex: 1;
  min-height: auto;
  background-color: #f2f2f2; /* Görsel eklenene kadar placeholder */
  border-radius: 16px;
}
.anestezi-image > img {
    width: 100%;
    border-radius: 15px;;
}

/* METİN ALANI */
.anestezi-content {
  flex: 1;
}

.anestezi-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #0b3a75;
  margin-bottom: 24px;
  font-weight: 700;
}

.anestezi-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5d73;
  margin-bottom: 32px;
  max-width: 520px;
}

/* BUTON */
.btn-bilgi {
  display: inline-block;
  padding: 14px 36px;
  background-color: #0b3a75;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-bilgi:hover {
  background-color: #092f5e;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .anestezi-container {
    flex-direction: column;
    gap: 40px;
  }

  .anestezi-content h2 {
    font-size: 34px;
    text-align: center;
  }

  .anestezi-content p {
    text-align: center;
    margin: 0 auto 32px;
  }

  .btn-bilgi {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }
}
