body#kt_body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-y: auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Sağ alan sabit... */
.right-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  background-image: url('https://cdn.pixabay.com/photo/2017/06/17/15/28/gray-2412504_1280.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 1000;
}

.right-info a img {
  height: 60px;
  max-height: 75px;
  margin-bottom: 1rem;
}

.right-info h1 {
  color: darkred;
  font-size: 3rem;
  text-align: center;
  margin: 0;
}

/* Sol alan */
.left-content {
  margin-right: 50vw;
  padding: 2rem;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Sol içeriğin genişliği sınırlı */
.left-content .content-wrapper {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Kartlar */
.card {
  background-color: #F1416C;
  color: white;
  border-radius: 1rem;
  width: 100%;
  height: 200px; /* Sabit yükseklik */
  padding: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(241, 65, 108, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 3px solid transparent;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  overflow: hidden;
}

/* Kart içeriğini sabitle */
.card > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* Hover & Active */
.card:hover,
.card:focus {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(241, 65, 108, 0.6);
  border-color: #fff;
  outline: none;
}

.card:active {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(241, 65, 108, 0.8);
}

/* Responsive */
@media (max-width: 991px) {
  .right-info {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
  }

  .left-content {
    margin-right: 0;
    width: 100%;
    padding: 2rem 1rem;
  }

  .left-content .content-wrapper {
    max-width: 100%;
    gap: 1.5rem;
  }

  .card {
    height: 160px;
    font-size: 1.7rem;
    padding: 1.2rem;
  }
}
