/* Genel Konteyner */
.med-slider {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 60px 10%;
    min-height: 500px;
    gap: 40px;
}

/* Sol İçerik Alanı */
.med-content {
    flex: 1.2;
}

.med-content h2 {
    font-family: 'Poppins', sans-serif;
    color: #0c2461; /* Görseldeki koyu lacivert */
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.med-border {
    border-left: 3px solid #d4af37; /* Altın sarısı dikey çizgi */
    padding-left: 20px;
    margin-bottom: 40px;
    color: #555c6e;
    font-size: 18px;
    line-height: 1.6;
    max-width: 450px;
}

/* Buton ve Navigasyon Grubu */
.slider-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.med-btn {
    background: #d4af37; /* Görseldeki buton rengi */
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

.med-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* Ok İkonları */
.med-nav {
    display: flex;
    gap: 10px;
}

.med-nav button {
    background: #061a4d;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sağ Görsel Alanı */
.med-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.med-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .med-slider { flex-direction: column; text-align: center; padding: 40px 20px; }
    .med-border { border-left: none; padding-left: 0; margin: 20px auto; }
    .slider-footer { flex-direction: column; }
}