.custom-about-section {
position: relative;
display: flex;
align-items: center;
padding: 50px;
max-width: 1200px;
margin: 0 auto;
}
.image-container img {
width: 60%;
border-radius: 20px; /* Görsel köşelerini yumuşatır */
}
.text-card {
position: absolute;
right: 10%;
width: 45%;
background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); /* Yeşilimsi gradient */
padding: 40px;
border-radius: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
z-index: 2;
}
@media (max-width: 768px) {
.custom-about-section { flex-direction: column; }
.text-card { position: relative; width: 100%; right: 0; margin-top: -50px; }
}