/* Uzmanlık Alanları Sayfası Stilleri */
.expertise-page {
    padding-top: 100px;
    padding-bottom: 2rem;
    background: #ffffff;
}

.expertise-page h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* Hastalık Listesi */
.disease-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.disease-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.disease-item:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.disease-item h2 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.5rem;
}

/* Hastalık Detay Görünümü */
.disease-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.disease-detail h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.disease-text {
    line-height: 1.8;
}

.disease-text p {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Geri Butonu */
.btn-back {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background: #2980b9;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .expertise-page h1 {
        font-size: 2rem;
    }

    .disease-detail {
        padding: 1rem;
    }

    .disease-detail h2 {
        font-size: 1.8rem;
    }

    .disease-text p {
        font-size: 1rem;
    }
} 