/* Aile Sağlığı Çalışanları - Yardımcı Personel sayfası ile aynı kartlar */
.staff-content .staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Aile Hekimleri - Alt alta sıralı kartlar */
.doctors-content .doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (max-width: 992px) {
    .staff-content .staff-grid { grid-template-columns: repeat(2, 1fr); }
    .personnel-content .personnel-grid { grid-template-columns: repeat(2, 1fr); }
    .doctors-content .doctors-grid { grid-template-columns: 1fr; }                                                                               
}

@media (max-width: 576px) {
    .staff-content .staff-grid { grid-template-columns: 1fr; }
    .personnel-content .personnel-grid { grid-template-columns: 1fr; }
    .doctors-content .doctors-grid { grid-template-columns: 1fr; }
    
    /* Aile Hekimleri - Mobil responsive */
    .doctors-content .doctor-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px !important;
    }
    
    .doctors-content .doctor-avatar {
        margin-bottom: 15px !important;
    }
    
    .doctors-content .doctor-info {
        width: 100% !important;
    }
    
    .doctors-content .schedule-table {
        font-size: 0.8rem !important;
        width: 60% !important;
        background: transparent !important;
        border: none !important;
    }
    
    .doctors-content .schedule-table th,
    .doctors-content .schedule-table td {
        padding: 3px 4px !important;
        border: none !important;
        background: transparent !important;
    }
    
    /* Aile Hekimleri - Mobil responsive profil */
    .doctor-profile {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        margin: 20px 0 !important;
        padding: 0 10px !important;
    }
    
    .profile-photo {
        width: 250px !important;
        height: 250px !important;
        margin-bottom: 3px !important;
    }
    
    .doctor-image h2 {
        font-size: 0.9rem !important;
    }
    
    .doctor-image .doctor-unit {
        font-size: 0.75rem !important;
    }
    
    .doctor-details {
        width: 100% !important;
        text-align: center !important;
        height: auto !important;
    }
    
    .work-schedule-table {
        font-size: 0.8rem !important;
        border: 1px solid #e0e0e0 !important;
    }
    
    .work-schedule-table th,
    .work-schedule-table td {
        padding: 6px 8px !important;
    }
    
    .work-schedule-table thead {
        background: #f8f9fa !important;
    }
    
    .work-schedule-table tbody tr:hover td {
        background: #f8f9fa !important;
        color: #666666 !important;
    }
}

.staff-content .staff-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px 14px;
    box-shadow: none;
    transition: none !important;
    cursor: default !important;
}

/* Aile Hekimleri - Çalışma saatleri tablosu ile geniş kartlar */
.doctors-content .doctor-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px;
    box-shadow: none;
    min-height: auto;
}

.staff-content .staff-avatar {
    flex-shrink: 0;
}

/* Aile Hekimleri - Avatar stilleri */
.doctors-content .doctor-avatar {
    flex-shrink: 0;
}

.staff-content .avatar-placeholder {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid #e9ecef;
}

.staff-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #f8f9fa;
}

/* Aile Hekimleri - Fotoğraf stilleri */
.doctors-content .doctor-photo {
    width: 400px;
    height: 400px;
    border-radius: 0;
    object-fit: cover;
    display: block;
    background: transparent;
    border: none;
    transition: none;
}

/* Aile Hekimleri - Fotoğraf hover animasyonu kaldır */
.doctors-content .doctor-photo:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    scale: 1 !important;
    opacity: 1 !important;
    border: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

/* Aile Hekimleri Sayfası - Profil Bölümü */
.doctor-profile {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0;
    padding: 0 20px;
}

.doctor-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
    background: transparent;
    border: 3px solid #cccccc;
    border-radius: 0;
    transition: none;
    margin-bottom: 5px;
}

.profile-photo:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    scale: 1 !important;
    opacity: 1 !important;
    border: 3px solid #cccccc !important;
    border-color: #cccccc !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

.doctor-image h2 {
    margin: 0;
    font-size: 0.9rem;
    color: #333333;
    font-weight: 600;
    text-align: center;
}

.doctor-image .doctor-unit {
    margin: 5px 0 0 0;
    font-size: 0.7rem;
    color: #666666;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
}

/* Doktor Detayları */
.doctor-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Çalışma Saatleri Sayfası - Minimal Tasarım */
.minimal-schedule {
    padding: 20px 0;
}

.minimal-schedule h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}



.doctor-block {
    margin-bottom: 35px;
}

.doctor-block h2 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.doctor-block h2::after {
    display: none !important;
}

.unit-num {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-top: 5px;
}

.simple-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.95rem;
}

.simple-table thead {
    background: #f8f9fa;
}

.simple-table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #dee2e6;
}

.simple-table td {
    padding: 10px 12px;
    border: 1px solid #dee2e6;
    color: #495057;
}

.simple-table tbody tr:hover {
    background: #f8f9fa;
}

.simple-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.simple-table tbody tr:nth-child(even):hover {
    background: #f0f0f0;
}

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

    .doctor-block h2 {
        font-size: 1.1rem;
    }

    .simple-table {
        font-size: 0.85rem;
    }

    .simple-table th,
    .simple-table td {
        padding: 8px 6px;
    }
}

.work-schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.work-schedule-table thead {
    background: #f8f9fa;
    flex-shrink: 0;
}

.work-schedule-table tbody {
    display: flex;
    flex-direction: column;
}

.work-schedule-table tr {
    display: flex;
}

.work-schedule-table th {
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    color: #333333;
    border: none !important;
    font-size: 0.9rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.work-schedule-table td {
    padding: 8px 12px;
    text-align: left;
    border: none !important;
    color: #333333;
    vertical-align: top;
    font-size: 0.9rem;
    background: #ffffff;
    transition: all 0.2s ease;
    flex: 1;
    display: flex;
    align-items: center;
}

.work-schedule-table tbody tr:hover td {
    background: #f8f9fa;
    color: #666666;
}

.work-schedule-table tbody tr:last-child td {
    border: none !important;
}

.work-schedule-table th:first-child,
.work-schedule-table td:first-child {
    font-weight: 600;
    color: #333333;
    flex: 0 0 160px;
}

.work-schedule-table th:nth-child(2),
.work-schedule-table th:nth-child(3),
.work-schedule-table td:nth-child(2),
.work-schedule-table td:nth-child(3) {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: #333333;
    flex: 0 0 200px;
}

.work-schedule-table th:last-child,
.work-schedule-table td:last-child {
    font-style: italic;
    color: #333333;
    font-size: 0.8rem;
    flex: 1;
}

/* Doktor Detayları */
.doctor-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Çalışma Saatleri Tablosu - Hızlı Erişim Kartları Stili */
.schedule-section {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.work-schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.85rem;
    background: #ffffff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.work-schedule-table thead {
    background: transparent;
    flex-shrink: 0;
}

.work-schedule-table tbody {
    display: flex;
    flex-direction: column;
}

.work-schedule-table tr {
    display: flex;
}

.work-schedule-table th {
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    color: #333333;
    border: none !important;
    font-size: 0.85rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.work-schedule-table td {
    padding: 8px 12px;
    text-align: left;
    border: none !important;
    color: #333333;
    vertical-align: top;
    font-size: 0.85rem;
    background: #ffffff;
    transition: all 0.2s ease;
    flex: 1;
    display: flex;
    align-items: center;
}

.work-schedule-table tbody tr:hover td {
    background: #f8f9fa;
    color: #666666;
}

.work-schedule-table tbody tr:last-child td {
    border: none !important;
}

.work-schedule-table th:first-child,
.work-schedule-table td:first-child {
    font-weight: 600;
    color: #333333;
    flex: 0 0 130px;
}

.work-schedule-table th:nth-child(2),
.work-schedule-table th:nth-child(3),
.work-schedule-table th:last-child {
    font-weight: 600;
    color: #333333;
    font-family: inherit;
}

.work-schedule-table th:nth-child(2),
.work-schedule-table th:nth-child(3) {
    flex: 0 0 180px;
}

.work-schedule-table th:last-child {
    flex: 1;
}

.work-schedule-table td:nth-child(2),
.work-schedule-table td:nth-child(3) {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: #333333;
    flex: 0 0 180px;
}

.work-schedule-table td:last-child {
    font-style: italic;
    color: #333333;
    font-size: 0.8rem;
    flex: 1;
}

.staff-content .staff-info {
    flex: 1;
    min-width: 0;
}

/* Aile Hekimleri - Bilgi stilleri */
.doctors-content .doctor-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.staff-content .staff-info h3 {
    margin: 0 0 2px 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Aile Hekimleri - Başlık stilleri */
.doctors-content .doctor-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #000000;
    font-weight: 700;
    text-align: left;
}

.doctors-content .doctor-title {
    margin: 0 0 8px 0;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}

.doctors-content .doctor-unit {
    margin: 0 0 15px 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.3;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 6px 10px;
    background: #f8f9fa;
    display: inline-block;
    width: fit-content;
}

/* Aile Hekimleri - Çalışma saatleri tablosu stilleri */
.doctors-content .doctor-schedule {
    margin-top: 10px;
}

.doctors-content .doctor-schedule h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    text-align: left;
    border-bottom: none;
}

.doctors-content .schedule-table {
    width: 50%;
    border-collapse: collapse;
    font-size: 0.8rem;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.doctors-content .schedule-table thead {
    background: transparent;
}

.doctors-content .schedule-table th {
    padding: 4px 6px;
    text-align: left;
    font-weight: 600;
    color: #000000;
    border: none;
    border-bottom: none;
    font-size: 0.8rem;
}

.doctors-content .schedule-table td {
    padding: 4px 6px;
    text-align: left;
    border: none;
    color: #333;
    vertical-align: top;
    font-size: 0.8rem;
}

.doctors-content .schedule-table tbody tr:last-child td {
    border: none;
}

.doctors-content .schedule-table td:first-child {
    font-weight: 600;
    color: #000000;
    width: 50px;
    font-size: 0.8rem;
}

.doctors-content .schedule-table td:nth-child(2),
.doctors-content .schedule-table td:nth-child(3) {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: #333;
    width: 70px;
    font-size: 0.8rem;
}

.doctors-content .schedule-table td:last-child {
    font-style: italic;
    color: #333;
    font-size: 0.8rem;
}

/* Aile Sağlığı sayfası özel: isimler siyah, hover çerçeve gri */
.staff-content .staff-info h3 { color: #000000; font-size: 0.9rem; }
.staff-content .staff-title, .staff-content .staff-unit { font-size: 0.8rem; }
/* Aile Sağlığı: avatar çevresindeki turkuaz arka planı kaldır */
.staff-content .staff-avatar { background: transparent !important; padding: 0 !important; position: static; }
.staff-content .staff-avatar::before { display: none !important; }

/* Aile Sağlığı: kart üst boşluğunu azalt */
.staff-content .staff-card { padding-top: 4px; }
.staff-content .staff-info h3 { margin-top: 0; }
.staff-content .staff-grid { margin-top: 0; }
.staff-content .staff-avatar { margin-top: 0; }
.staff-content .staff-info { margin-top: 0; padding-top: 0; }

/* Aile Hekimleri: kart düzenlemeleri */
.doctors-content .doctor-card { 
    padding: 20px; 
    min-height: auto; 
    align-items: flex-start; 
}
.doctors-content .doctor-info h3 { margin-top: 0; }
.doctors-content .doctors-grid { margin-top: 0; }
.doctors-content .doctor-avatar { 
    margin-top: 0; 
    display: flex; 
    align-items: center; 
    background: transparent !important; 
    padding: 0 !important; 
    position: static; 
}
.doctors-content .doctor-info { margin-top: 0; padding-top: 0; }
.staff-content .staff-title { margin-top: 0; }

.staff-content .staff-card:hover { border-color: transparent !important; }

/* Aile Hekimleri: hover efektlerini kaldır */
.doctors-content .doctor-card:hover { 
    border: none !important; 
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.doctors-content .doctor-card:hover .doctor-unit { 
    border-color: transparent !important; 
}

/* Aile Hekimleri: Mevcut stilleri override et */
.doctors-content .doctor-card {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    transition: none !important;
    border: none !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    gap: 20px !important;
}

.doctors-content .doctor-avatar {
    background: transparent !important;
    padding: 0 !important;
    text-align: center !important;
    position: static !important;
    flex-shrink: 0 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.staff-content .staff-title {
    margin: 0 0 4px 0;
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.3;
}

.staff-content .staff-unit {
    margin: 0;
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.3;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 4px 8px;
    background: #f8f9fa;
    display: inline-block;
}

/* Aile Sağlığı: birim bilgisini kartın en altına sabitle */
.staff-content .staff-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 16px;
}
.staff-content .staff-unit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 4px 6px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: #ffffff;
}

/* Aile Sağlığı: birimin alta sabitlenmesi için kart yüksekliği ve hizalama */
.staff-content .staff-card { min-height: 130px; align-items: stretch; }
.staff-content .staff-avatar { display: flex; align-items: center; }

/* Hover sadece birim çerçevesinin rengini değiştirir */
.staff-content .staff-card:hover .staff-unit { 
    border: 1px solid #e9ecef !important;
    border-color: #e9ecef !important; 
    transition: none !important;
    animation: none !important;
    transform: none !important;
    background: transparent !important;
}

.staff-content .staff-unit {
    transition: none !important;
    animation: none !important;
    border: 1px solid #e9ecef !important;
}

/* ASM Rehberi sayfası - h2 başlıklarını anasayfa stiline göre düzenle */
.minimal-schedule h2 {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    text-align: left;
}

.minimal-schedule h2::after {
    display: none;
}

.minimal-schedule h2:first-of-type {
    margin-top: 0;
}

/* Aile Sağlığı Çalışanları sayfası için özel hover kuralı - tüm hover efektlerini kapat */
.staff-content .staff-card:hover,
.staff-content .staff-card:focus,
.staff-content .staff-card:active {
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid #e9ecef !important;
    border-color: #e9ecef !important;
    background: #ffffff !important;
    outline: none !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    cursor: default !important;
}

.staff-content .staff-card * {
    transition: none !important;
    animation: none !important;
}

/* Yardımcı Personellerimiz: kart hover efektlerini kapat */
.personnel-content .personnel-card:hover,
.personnel-content .personnel-card:focus,
.personnel-content .personnel-card:active {
    transform: none !important;
    box-shadow: none !important;
    border-color: #e9ecef !important;
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    outline: none !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    cursor: default !important;
}

.personnel-content .personnel-card * {
    transition: none !important;
    animation: none !important;
}

/* Yardımcı Personel - Aile Sağlığı temasıyla uyumlu kartlar */
.personnel-content .personnel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.personnel-content .personnel-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    transition: none !important;
    cursor: default !important;
    border-radius: 6px;
    padding: 12px 14px;
    box-shadow: none;
}

.personnel-content .personnel-avatar {
    flex-shrink: 0;
}

.personnel-content .avatar-placeholder {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid #e9ecef;
}

.personnel-content .personnel-info {
    flex: 1;
    min-width: 0;
}

.personnel-content .personnel-info h3 {
    margin: 0 0 2px 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.personnel-content .personnel-title {
    margin: 0 0 4px 0;
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.3;
}

.personnel-content .personnel-unit {
    margin: 0;
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.3;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 4px 8px;
    background: transparent;
    display: inline-block;
}

/* Yardımcı Personel: kart üst boşluğunu azalt */
.personnel-content .personnel-card { padding-top: 4px; }
.personnel-content .personnel-info h3 { margin-top: 0; }
.personnel-content .personnel-grid { margin-top: 0; }
.personnel-content .personnel-avatar { margin-top: 0; }
.personnel-content .personnel-info { margin-top: 0; padding-top: 0; }
.personnel-content .personnel-title { margin-top: 0; }

.personnel-content .personnel-card:hover { 
    border-color: #e9ecef !important;
    border: 1px solid #e9ecef !important;
}

/* Hover sadece birim çerçevesinin rengini değiştirir */
.personnel-content .personnel-card:hover .personnel-unit { 
    border: 1px solid #e9ecef !important;
    border-color: #e9ecef !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    background: transparent !important;
}

.personnel-content .personnel-unit {
    transition: none !important;
    animation: none !important;
    border: 1px solid #e9ecef !important;
}

/* Yardımcı Personel: birimin alta sabitlenmesi için kart yüksekliği ve hizalama */
.personnel-content .personnel-card { min-height: 130px; align-items: stretch; }
.personnel-content .personnel-avatar { display: flex; align-items: center; }

/* Yardımcı Personel sayfası özel: isimler siyah, hover çerçeve gri */
.personnel-content .personnel-info h3 { color: #000000; font-size: 0.9rem; }
.personnel-content .personnel-title, .personnel-content .personnel-unit { font-size: 0.8rem; }
/* Yardımcı Personel: avatar çevresindeki turkuaz arka planı kaldır */
.personnel-content .personnel-avatar { background: transparent !important; padding: 0 !important; position: static; }
.personnel-content .personnel-avatar::before { display: none !important; }

/* Yardımcı Personel: birim bilgisini kartın en altına sabitle */
.personnel-content .personnel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 16px;
}
.personnel-content .personnel-unit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.3;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 4px 8px;
    background: transparent;
    display: inline-block;
}
.cimer-badge { height: 28px; width: auto; vertical-align: middle; border: 0; outline: none; box-shadow: none; }
.alo184-badge { height: 28px; width: auto; vertical-align: middle; border: 0; outline: none; box-shadow: none; }
.gov-item a img { border: 0; outline: none; box-shadow: none; }
.gov-item a:focus, .gov-item a:active { outline: none; }
.gov-item a { -webkit-tap-highlight-color: transparent; }
/* gov.tr sade iletişim blokları */
.contact-gov {
    background: #ffffff;
}

.gov-contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 10px 0 16px;
    border: none;
}

.gov-item {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.gov-item h3 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
}

.gov-item p {
    margin: 0;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* İkinci blok öncesi bir satır boşluk */
.gov-item p + p { margin-top: 10px; }

.gov-item a { color: #0d6efd; text-decoration: none; }
.gov-item a:hover { text-decoration: underline; }

@media (max-width: 992px) {
    .gov-contacts { grid-template-columns: 1fr 1fr; gap: 10px; }
}

@media (max-width: 576px) {
    .gov-contacts { grid-template-columns: 1fr; }
}

/* Link tıklama/odak kutucuğunu kaldır */
a { -webkit-tap-highlight-color: transparent; outline: none; }
a:focus, a:active { outline: none !important; box-shadow: none !important; }
.navigation a:focus, .navigation a:active,
.dropdown-menu a:focus, .dropdown-menu a:active,
.quick-access-item:focus, .quick-access-item:active,
.footer a:focus, .footer a:active { outline: none !important; box-shadow: none !important; }
/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Türkçe karakter desteği için font ayarları */
html {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container genişlik ayarları */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri */
.header {
    background: #ffffff;
    color: #dc3545;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-image {
    flex-shrink: 0;
}

.ministry-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    flex: 1;
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: left;
    color: #dc3545;
    text-shadow: none;
}

.logo-text h2 {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    color: #dc3545;
    opacity: 1;
}

/* Navigasyon Stilleri - Sağlık Bakanlığı Birebir */
.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Arial', sans-serif;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #343a40;
    font-weight: 600;
}

.breadcrumb-sep {
    color: #adb5bd;
}

/* İletişim Haritası */
.map-section {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.contact-map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 0 16px;
}

.contact-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.map-route-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #dc3545;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.map-route-btn:hover {
    background: #b02a37;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: inline-block;
    padding: 15px 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #666666;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover {
    color: #000000;
    background-color: transparent;
}

.dropdown > a:hover .dropdown-arrow {
    border-top-color: #000000;
}

.nav-menu li a:hover::after {
    transform: scaleX(1);
}

/* Dropdown ok işareti - Sağlık Bakanlığı tarzı */
.dropdown-arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #666666;
    display: inline-block;
    vertical-align: middle;
    transition: border-top-color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.nav-logo {
    margin-right: 30px;
    display: flex;
    align-items: center;
    margin-bottom: -20px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo a::after {
    display: none !important;
}

.nav-logo a:hover {
    text-decoration: none;
}

.nav-logo a:hover::after {
    display: none !important;
}

.nav-logo a:hover .nav-logo-img {
    opacity: 0.85;
    transform: scale(1.02);
}

.quick-icons {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    margin-left: auto;
    padding: 0 10px;
    align-self: flex-start;
    margin-top: 10px;
}

.quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.quick-icon span {
    font-size: 1rem;
    line-height: 1;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.quick-icon:hover {
    background: transparent;
    transform: translateY(-2px) scale(1.15);
}

.quick-icon:hover span {
    filter: grayscale(0%) brightness(1.1);
}

.quick-icon-emergency {
    background: transparent;
}

.quick-icon-emergency:hover {
    background: transparent;
    transform: translateY(-2px) scale(1.15);
}

.quick-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.quick-icon:hover::after {
    opacity: 1;
}

.nav-links {
    display: flex;
    align-items: flex-end;
    flex: 1;
}

.nav-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 3px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin-top: 5px;
    margin-bottom: 5px;
}


/* Dropdown Menü Stilleri - Sağlık Bakanlığı Birebir */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
    padding: 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #666666;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: transparent;
    color: #000000;
}

.dropdown-menu li a:hover::after {
    transform: scaleX(1);
}

/* Ana İçerik Stilleri */
.main-content {
    padding: 40px 0;
    background-color: #ffffff;
}

/* Bölüm Başlıkları */
section h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #DC143C);
    border-radius: 2px;
}

/* Hoş Geldiniz Bölümü */
.welcome-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.welcome-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Hizmetler Bölümü */
.services-section {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #DC143C;
}

.service-card h3 {
    color: #40E0D0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Çalışma Saatleri */
.working-hours {
    margin-bottom: 60px;
}

.hours-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.hours-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 3px solid #40E0D0;
}

.hours-card.emergency {
    border-top-color: #DC143C;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.hours-card h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hours-card p {
    color: #40E0D0;
    font-size: 1.2rem;
    font-weight: 700;
}

.hours-card.emergency p {
    color: #DC143C;
}

/* İletişim Bilgileri */
.contact-info {
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.contact-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #40E0D0;
    transform: translateY(-3px);
}

.contact-item h3 {
    color: #40E0D0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

/* Footer Stilleri - Sağlık Bakanlığı Stili */
.footer {
    background: #333333;
    color: #ffffff;
    padding: 30px 0 20px;
    margin-top: 60px;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #cccccc;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    position: relative;
    display: inline-block;
    transition: none;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #cccccc;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 15px;
    text-align: right;
    color: #999999;
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin-top: 20px;
    padding: 15px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-bottom p {
    margin-bottom: 5px;
    font-weight: 600;
}

/* Acil Çağrı Kartları Stilleri - Sağlık Bakanlığı Birebir */
.emergency-calls-section {
    background: #ffffff;
    padding: 30px 0;
}

.emergency-calls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-call-item {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    padding: 30px 15px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #ffffff;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-call-content {
    text-align: center;
    color: #333333;
}

.emergency-call-number {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.emergency-call-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333333;
    font-family: 'Arial', sans-serif;
}

.emergency-call-action {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #f8f9fa;
    display: inline-block;
}

/* Her kart için özel renkler - Siyah-Gri Ton */
.emergency-112 {
    background: #ffffff;
}

.emergency-112 .emergency-call-number {
    color: #2c2c2c;
    font-weight: 800;
}

.emergency-184 {
    background: #ffffff;
}

.emergency-184 .emergency-call-number {
    color: #2c2c2c;
    font-weight: 800;
}

.emergency-444 {
    background: #ffffff;
}

.emergency-444 .emergency-call-number {
    color: #2c2c2c;
    font-weight: 800;
}

.emergency-171 {
    background: #ffffff;
}

.emergency-171 .emergency-call-number {
    color: #2c2c2c;
    font-weight: 800;
}

.emergency-call-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.emergency-call-item:hover .emergency-call-content {
    color: #333333;
}

/* Hover durumunda başlıkları gri yap */
.emergency-call-item:hover .emergency-call-title {
    color: #808080;
}

.emergency-call-item:hover .emergency-call-action {
    background: #2c2c2c;
    border-color: #2c2c2c;
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .ministry-logo {
        height: 55px;
        width: auto;
    }
    
    .logo-text h1 {
        font-size: 1.0rem;
        text-align: center;
        color: #dc3545;
    }
    
    .logo-text h2 {
        font-size: 0.9rem;
        text-align: center;
        color: #dc3545;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }
    
    .nav-links {
        margin: 0 auto;
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    
    .nav-logo {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        padding: 0;
    }
    
    .nav-logo-img {
        height: 55px;
        width: auto;
        margin-top: 4px;
        margin-bottom: 4px;
    }
    
    .quick-icons {
        display: flex;
        gap: 4px;
        padding: 10px 0;
        justify-content: center;
        width: 100%;
    }
    
    .quick-icon {
        width: 26px;
        height: 26px;
    }
    
    .quick-icon span {
        font-size: 0.9rem;
    }
    
    .quick-icon::after {
        display: none;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        text-align: center;
        padding: 8px 10px;
        color: #000000;
        text-transform: uppercase;
        letter-spacing: 0;
        font-size: 12px;
        position: relative;
        display: inline-block;
    }
    
    .nav-menu li a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 15px;
        right: 15px;
        height: 2px;
        background-color: #666666;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .nav-menu li a:hover::after {
        transform: scaleX(1);
    }
    
    /* Dropdown ok işareti - mobil */
    .dropdown-arrow {
        margin-left: 4px;
        width: 0;
        height: 0;
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
        border-top: 3px solid #666666;
        display: inline-block;
        vertical-align: middle;
        transition: transform 0.3s ease, border-top-color 0.3s ease;
    }
    
    .dropdown > a:hover .dropdown-arrow {
        border-top-color: #000000;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background-color: #ffffff;
        border-radius: 0;
        border: 1px solid #e0e0e0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        display: block !important;
        position: static !important;
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        background-color: #f8f9fa !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 4px !important;
        margin-top: 5px !important;
        padding: 5px 0 !important;
    }
    
    .dropdown > a {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        user-select: none;
        -webkit-user-select: none;
    }
    
    .dropdown.active > a {
        background-color: #f0f0f0;
        color: #000000;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
        border-top-color: #000000;
    }
    
    .dropdown-menu li a {
        padding: 10px 15px;
        border-bottom: 1px solid #f0f0f0;
        border-left: none;
        margin-left: 20px;
        color: #000000;
        text-transform: none;
        letter-spacing: 0;
        font-size: 14px;
        position: relative;
        display: block;
        width: 100%;
    }
    
    .dropdown-menu li a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 15px;
        right: 15px;
        height: 2px;
        background-color: #666666;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .dropdown-menu li a:hover::after {
        transform: scaleX(1);
    }
    
    /* Mobil hamburger menü stilleri */
    .nav-links.mobile-hidden {
        display: none !important;
    }
    
    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 10px 0;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .hamburger {
        display: block !important;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hours-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .emergency-calls-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .emergency-call-item {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .emergency-call-number {
        font-size: 1.2rem;
    }
    
    .emergency-call-title {
        font-size: 0.9rem;
    }
    
    .emergency-call-action {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-top: 8px;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .welcome-section {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 0.9rem;
        color: #dc3545;
    }
    
    .logo h2 {
        font-size: 0.7rem;
        color: #dc3545;
    }
    
    .nav-menu li a {
        font-size: 11px;
        padding: 8px 8px;
        color: #000000;
        text-transform: uppercase;
        letter-spacing: 0;
        position: relative;
        display: inline-block;
    }
    
    .nav-menu li a::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 12px;
        right: 12px;
        height: 2px;
        background-color: #666666;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .nav-menu li a:hover::after {
        transform: scaleX(1);
    }
    
    /* Dropdown ok işareti - mobil */
    .dropdown-arrow {
        margin-left: 4px;
        width: 0;
        height: 0;
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
        border-top: 3px solid #666666;
        display: inline-block;
        vertical-align: middle;
        transition: transform 0.3s ease, border-top-color 0.3s ease;
    }
    
    .dropdown > a:hover .dropdown-arrow {
        border-top-color: #000000;
    }
    
    section h2 {
        font-size: 1.4rem;
    }
    
    .service-card,
    .hours-card,
    .contact-item {
        padding: 20px;
    }
    
    .welcome-section p {
        font-size: 1rem;
    }
}

/* Yüksek çözünürlük ekranlar için optimizasyon */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hours-info {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Yazdırma stilleri */
@media print {
    .navigation,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .service-card,
    .hours-card,
    .contact-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Erişilebilirlik için odaklanma stilleri */
a:focus,
button:focus {
    outline: 2px solid #40E0D0;
    outline-offset: 2px;
}

/* Hakkımızda Sayfası Stilleri */
.page-header {
    text-align: left;
    margin-bottom: 50px;
    padding: 20px 0;
}

.page-header h1 {
    color: #40E0D0;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.services-list {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><path d="M5 5 L15 15 M15 5 L5 15" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23tech)"/></svg>');
    opacity: 0.4;
}

.services-list h2 {
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: none;
    padding: 0;
    background: none;
    margin: 0 0 50px 0;
}

.services-list h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    transform: translateY(0);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-number {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-item:hover .service-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

.service-item:hover .service-number::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.service-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.service-item:hover .service-text {
    color: #ffffff;
    transform: translateX(5px);
}

/* Ücretsiz Hizmet Vurgusu */
.free-service-notice {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(64, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.free-service-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.free-service-notice h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Yükleme animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.hours-card,
.contact-item,
.service-item {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Tasarım - Hakkımızda Sayfası */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-intro {
        padding: 20px !important;
    }
    
    .about-intro h1 {
        font-size: 1.8rem !important;
    }
    
    .about-intro p {
        font-size: 1rem !important;
    }
    
    .services-modern-section {
        padding: 30px 20px !important;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-modern-card {
        padding: 20px !important;
    }
    
    .free-service-notice {
        padding: 30px 20px !important;
    }
    
    .free-service-notice h2 {
        font-size: 1.3rem !important;
    }
    
    .free-service-notice p {
        font-size: 1rem !important;
    }
    
    .services-list {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .services-list h2 {
        font-size: 2.2rem;
        margin: 0 0 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-item {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .service-item:hover {
        transform: translateY(-8px);
    }
    
    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 20px;
        border-radius: 10px;
    }
    
    .service-text {
        font-size: 1rem;
    }
    
    .free-service-notice h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 15px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .about-intro {
        padding: 15px;
    }
    
    .free-service-notice {
        padding: 20px;
    }
    
    .free-service-notice h2 {
        font-size: 1.2rem;
    }
}

/* Hizmet Standartları Sayfası Stilleri */
.standards-content {
    max-width: 1200px;
    margin: 0 auto;
}

.standards-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
}

.standards-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.standards-table-container {
    margin-bottom: 40px;
}

.standards-table-container h2 {
    color: #40E0D0;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.standards-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.95rem;
    min-width: 800px;
}

.standards-table thead {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
}

.standards-table th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.standards-table th:first-child {
    border-radius: 12px 0 0 0;
    width: 8%;
}

.standards-table th:nth-child(2) {
    width: 20%;
}

.standards-table th:nth-child(3) {
    width: 45%;
}

.standards-table th:last-child {
    border-radius: 0 12px 0 0;
    width: 15%;
}

.standards-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.standards-table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(64, 224, 208, 0.2);
}

.standards-table tbody tr:last-child {
    border-bottom: none;
}

.standards-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.standards-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

.standards-table td {
    padding: 15px 12px;
    vertical-align: top;
    border: none;
    line-height: 1.5;
}

.standards-table td:first-child {
    text-align: center;
    font-weight: 700;
    color: #40E0D0;
    background-color: #f8f9fa;
    font-size: 1.1rem;
}

.standards-table td:nth-child(2) {
    font-weight: 600;
    color: #333;
}

.standards-table td:nth-child(3) {
    color: #555;
    font-size: 0.9rem;
}

.standards-table td:last-child {
    text-align: center;
    font-weight: 600;
    color: #DC143C;
    background-color: #fff5f5;
}

.standards-notice {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border-radius: 12px;
    border-left: 4px solid #DC143C;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
}

.standards-notice p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.standards-notice strong {
    color: #DC143C;
    font-weight: 700;
}

/* Responsive Tasarım - Hizmet Standartları */
@media (max-width: 768px) {
    .standards-table-container h2 {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .standards-table {
        font-size: 0.85rem;
        min-width: 600px;
    }
    
    .standards-table th,
    .standards-table td {
        padding: 10px 8px;
    }
    
    .standards-table th {
        font-size: 0.8rem;
    }
    
    .standards-table td:first-child {
        font-size: 1rem;
    }
    
    .standards-table td:nth-child(3) {
        font-size: 0.8rem;
    }
    
    .standards-intro,
    .standards-notice {
        padding: 20px;
    }
    
    .standards-intro p,
    .standards-notice p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .standards-table-container h2 {
        font-size: 1.3rem;
        padding: 12px;
    }
    
    .standards-table {
        font-size: 0.8rem;
        min-width: 500px;
    }
    
    .standards-table th,
    .standards-table td {
        padding: 8px 6px;
    }
    
    .standards-table th {
        font-size: 0.75rem;
    }
    
    .standards-table td:first-child {
        font-size: 0.9rem;
    }
    
    .standards-table td:nth-child(3) {
        font-size: 0.75rem;
    }
    
    .standards-intro,
    .standards-notice {
        padding: 15px;
    }
    
    .standards-intro p,
    .standards-notice p {
        font-size: 0.95rem;
    }
}

/* Öncelikli Hastalar Sayfası Stilleri */
.priority-content {
    max-width: 1000px;
    margin: 0 auto;
}

.priority-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
}

.priority-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.priority-groups {
    margin-bottom: 40px;
}

.priority-groups h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.priority-groups h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #DC143C);
    border-radius: 2px;
}
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #DC143C);
    border-radius: 2px;
}

.priority-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.priority-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.priority-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.02), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.priority-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #DC143C;
}

.priority-item:hover::before {
    opacity: 1;
}

.priority-number {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
    position: relative;
    z-index: 1;
}

.priority-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.priority-text h3 {
    color: #40E0D0;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.priority-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Öncelik Uyarısı */
.priority-notice {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, #DC143C, #B22222);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.priority-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.priority-notice h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

/* Responsive Tasarım - Öncelikli Hastalar */
@media (max-width: 768px) {
    .priority-groups h2 {
        font-size: 1.6rem;
    }
    
    .priority-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .priority-number {
        margin-right: 0;
        margin-bottom: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .priority-text h3 {
        font-size: 1.2rem;
    }
    
    .priority-text p {
        font-size: 0.95rem;
    }
    
    .priority-intro {
        padding: 20px;
    }
    
    .priority-intro p {
        font-size: 1rem;
    }
    
    .priority-notice {
        padding: 25px;
    }
    
    .priority-notice h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .priority-groups h2 {
        font-size: 1.4rem;
    }
    
    .priority-item {
        padding: 15px;
    }
    
    .priority-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .priority-text h3 {
        font-size: 1.1rem;
    }
    
    .priority-text p {
        font-size: 0.9rem;
    }
    
    .priority-intro {
        padding: 15px;
    }
    
    .priority-intro p {
        font-size: 0.95rem;
    }
    
    .priority-notice {
        padding: 20px;
    }
    
    .priority-notice h2 {
        font-size: 1.3rem;
    }
}

/* Aile Hekimleri Sayfası Stilleri */
.doctors-content {
    max-width: 1200px;
    margin: 0 auto;
}

.doctors-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
}

.doctors-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.doctors-section {
    margin-bottom: 50px;
}

.doctors-section h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.doctors-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #DC143C);
    border-radius: 2px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    width: 100%;
}

.doctor-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 450px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 0;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #40E0D0;
}

.doctor-avatar {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    padding: 40px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.doctor-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.doctor-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.doctor-info {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-info h3 {
    color: #40E0D0;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.doctor-title {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}

.doctor-specialty {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.doctor-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.doctor-details p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.doctor-details p:last-child {
    margin-bottom: 0;
}

.doctor-details strong {
    color: #40E0D0;
    font-weight: 600;
}

.doctor-unit {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.doctor-schedule {
    margin-top: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-schedule h4 {
    color: #40E0D0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    border-bottom: 2px solid #40E0D0;
    padding-bottom: 5px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 200px;
}

.schedule-table thead {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
}

.schedule-table th {
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
}

.schedule-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.schedule-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Yeni Anasayfa Tasarımı */

/* Hero ve Hizmetler Container */
.hero-services-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

/* Hero Bölümü Stilleri - Gri Ofis Not Defteri Tasarımı */
.hero-section {
    background: transparent;
    color: #2c3e50;
    padding: 20px 0;
    text-align: left;
}

.hero-content {
    background: #fafafa;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    padding: 25px 30px 25px 50px;
    margin: 0;
    max-width: 480px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transform: rotate(0.5deg);
    font-family: 'Calibri', sans-serif;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 20px,
        #e0e0e0 20px,
        #e0e0e0 21px
    );
    pointer-events: none;
}


.hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: #d32f2f;
    text-align: center;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 8px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #616161;
    text-align: left;
    position: relative;
    padding-left: 16px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.hero-content p strong {
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-content p:last-child {
    text-align: right;
    padding-left: 0;
}

.hero-content p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #757575;
    font-size: 1rem;
    font-weight: bold;
}

.hero-content p:last-child::before {
    content: none;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-services-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-section {
        padding: 15px 0;
    }
    
    .hero-content {
        padding: 20px 25px 20px 40px;
        margin: 0;
        transform: rotate(0.3deg);
    }
    
    
    .hero-content h1 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        padding-left: 14px;
    }
    
    .hero-content p strong {
        font-size: 0.85rem;
    }
    
    .hero-content p:last-child::before {
        content: none;
    }
    
    .hero-content p:last-child {
        text-align: right;
        padding-left: 0;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-column {
        padding: 20px 25px 20px 40px;
        transform: rotate(-0.3deg);
    }
    
    
    .service-column h2 {
        font-size: 1.1rem;
    }
    
    .service-column h3 {
        font-size: 1rem;
    }
    
    .service-list li {
        font-size: 0.8rem;
        padding-left: 14px;
    }
    
    .services-header h2 {
        font-size: 1rem;
        padding: 12px 20px;
        transform: rotate(0.3deg);
    }
    
    
    .service-column h3 {
        font-size: 1rem;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Kompakt Hizmetler Bölümü */
.services-section-compact {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-compact-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-compact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-compact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-compact-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tab Hizmetler Bölümü */
.services-tab-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-tab-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.tab-button.active {
    background: #ffffff;
    color: #20b2aa;
    border-bottom-color: #20b2aa;
}

.tab-content {
    padding: 30px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #20b2aa;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .services-tab-section {
        padding: 30px 0;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        padding: 15px;
        font-size: 1rem;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .service-item {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Sade Hizmetler Bölümü */
.services-simple-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.services-simple-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-simple-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-simple-box:hover {
    background: #ffffff;
    border-color: #20b2aa;
    box-shadow: 0 2px 10px rgba(32, 178, 170, 0.1);
}

.service-simple-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-simple-box p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-simple-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-simple-box {
        padding: 20px;
    }
    
    .service-simple-box h3 {
        font-size: 1.2rem;
    }
}

/* Modern Kompakt Hizmetler Bölümü */
.services-modern-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-modern-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-modern-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.service-modern-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #20b2aa, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-modern-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.service-modern-content {
    padding: 0;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: linear-gradient(135deg, #20b2aa, #40e0d0);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: default;
}

.service-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-modern-card {
        padding: 20px;
    }
    
    .service-modern-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .service-modern-icon {
        font-size: 2rem;
    }
    
    .service-modern-header h3 {
        font-size: 1.2rem;
    }
    
    .service-tags {
        justify-content: center;
    }
    
    .service-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Floating Message Widget */
.floating-message-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    max-width: 350px;
    font-family: 'Open Sans', sans-serif;
}

.message-toggle {
    background: linear-gradient(135deg, #20b2aa, #40e0d0);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
    margin-left: auto;
}

.message-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.message-icon {
    font-size: 1.5rem;
}

.message-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    max-width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-message-widget.active .message-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.message-header {
    background: linear-gradient(135deg, #20b2aa, #40e0d0);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.message-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.message-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.message-body {
    padding: 20px;
}

.message-body p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.message-signature {
    color: #20b2aa !important;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-message-widget {
        bottom: 20px;
        right: 20px;
        max-width: 300px;
    }
    
    .message-toggle {
        width: 50px;
        height: 50px;
    }
    
    .message-icon {
        font-size: 1.3rem;
    }
    
    .message-content {
        max-width: 300px;
        bottom: 60px;
    }
    
    .message-header {
        padding: 12px 15px;
    }
    
    .message-header h4 {
        font-size: 1rem;
    }
    
    .message-body {
        padding: 15px;
    }
    
    .message-body p {
        font-size: 0.9rem;
    }
}

/* Eski Hizmetler Bölümü */
.services-section {
    padding: 0;
    background: transparent;
    position: relative;
    flex: 1;
}

.services-section::before {
    display: none;
}

.services-header {
    margin-bottom: 20px;
    text-align: center;
}

.services-header h2 {
    background: #fafafa;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    padding: 15px 25px;
    margin: 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transform: rotate(0.5deg);
    font-family: 'Calibri', sans-serif;
    color: #424242;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid #9e9e9e;
    display: inline-block;
}

.services-header h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 20px,
        #e0e0e0 20px,
        #e0e0e0 21px
    );
    pointer-events: none;
}


.services-grid {
    display: flex;
    gap: 20px;
    max-width: none;
    margin: 0;
    position: relative;
}

.service-column {
    background: #fafafa;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    padding: 25px 30px 25px 50px;
    margin: 0;
    position: relative;
    flex: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transform: rotate(-0.5deg);
    font-family: 'Calibri', sans-serif;
}

.service-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 20px,
        #e0e0e0 20px,
        #e0e0e0 21px
    );
    pointer-events: none;
}


.service-column h2 {
    color: #424242;
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #9e9e9e;
    padding-bottom: 8px;
    position: relative;
    z-index: 1;
}

.service-column h3 {
    color: #424242;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #9e9e9e;
    padding-bottom: 6px;
    position: relative;
    z-index: 1;
}




.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    background: transparent;
    margin-bottom: 12px;
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #616161;
    text-align: left;
    position: relative;
    padding-left: 16px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #757575;
    font-size: 1rem;
    font-weight: bold;
}



/* Misyon Mesajı */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #20b2aa 0%, #40e0d0 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.mission-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #20b2aa, #40e0d0);
    border-radius: 2px;
}

.mission-main {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mission-signature {
    font-size: 1.1rem;
    color: #20b2aa;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-top: 20px;
}

.mission-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #20b2aa, transparent);
}

/* Modern Hasta Hakları Sayfası Tasarımı */

/* Sayfa Başlığı - Modern */
.page-header-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: none;
}

.header-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 40px;
    font-weight: 400;
}

.header-cta {
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #20b2aa, #40e0d0);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    color: white;
    text-decoration: none;
}

.cta-icon {
    font-size: 1.2rem;
}

/* Bölüm Başlıkları */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: none;
}

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hasta Hakları Grid */
.rights-section-modern {
    padding: 80px 0;
    background: #ffffff;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.right-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #20b2aa;
}

.card-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #20b2aa, #40e0d0);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 10px;
    line-height: 1.4;
}

.card-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hasta Sorumlulukları */
.responsibilities-section-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.responsibility-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.responsibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    font-size: 1.8rem;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 25px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-body li {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.card-body li::before {
    content: "•";
    color: #20b2aa;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .responsibilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .right-card,
    .responsibility-card {
        padding: 20px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
}

/* Eski Hasta Hakları Stilleri - Kaldırıldı */
.patient-rights-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.patient-rights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="medical" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><path d="M20 20 L30 30 M30 20 L20 30" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23medical)"/></svg>');
    opacity: 0.3;
}

.patient-rights-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rights-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.rights-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #20b2aa, #40e0d0);
    border-radius: 2px;
}

.rights-intro p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
}

.rights-link {
    color: #20b2aa;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(32, 178, 170, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 5px;
}

.rights-link:hover {
    color: #fff;
    background: #20b2aa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.patient-rights-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    text-shadow: none;
    position: relative;
}

.patient-rights-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fff, #20b2aa, #fff);
    border-radius: 2px;
}

.rights-section, .responsibilities-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.rights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #20b2aa, #40e0d0, #20b2aa);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.responsibilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e, #ff6b6b);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.patient-rights-content h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.patient-rights-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #20b2aa, #40e0d0);
    border-radius: 2px;
}

.responsibilities-section h3::after {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.patient-rights-content h4 {
    color: #34495e;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.patient-rights-content h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
}

.patient-rights-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.rights-list {
    counter-reset: item;
    padding-left: 0;
    display: grid;
    gap: 20px;
}

.rights-list li {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 0;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(32, 178, 170, 0.1);
    position: relative;
    list-style: none;
    counter-increment: item;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rights-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(32, 178, 170, 0.15);
    background: linear-gradient(135deg, #e8f5f4 0%, #d1f2eb 100%);
}

.rights-list li::before {
    content: counter(item);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #20b2aa, #40e0d0);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
    border: 3px solid #fff;
}

.rights-list li {
    margin-left: 25px;
}

.rights-list li strong {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.responsibility-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.responsibility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.15);
    background: linear-gradient(135deg, #ffe8e8 0%, #ffd1d1 100%);
}

.responsibility-item ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.responsibility-item li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.responsibility-item li::before {
    content: '•';
    color: #ff6b6b;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Kompakt Hizmetler Genel Bakış Bölümü */
.services-overview-section-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, #20b2aa 0%, #40e0d0 100%);
    position: relative;
    overflow: hidden;
}

.services-overview-content-compact {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-overview-content-compact h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-subtitle-compact {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.services-cards-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card-compact {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.service-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-icon-compact {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card-compact h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card-compact p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Eski Hizmetler Genel Bakış Bölümü */
.services-overview-section {
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-overview-section::before {
    display: none;
}

.services-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-overview-content h2 {
    color: #333333;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
    text-shadow: none;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.services-overview-content h2::after {
    display: none;
}


.services-subtitle {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: left;
}

.services-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

.services-cards-container {
    flex: 1;
    height: 300px;
    display: flex;
    align-items: stretch;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 0;
    width: 100%;
    height: 100%;
}

.video-container {
    flex: 1;
    max-width: 500px;
    position: sticky;
    top: 20px;
}

.video-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.service-icon {
    font-size: 1.2rem;
    margin-bottom: 6px;
    display: inline-block;
    animation: none;
    filter: none;
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.2s; }
.service-card:nth-child(3) .service-icon { animation-delay: 0.4s; }
.service-card:nth-child(4) .service-icon { animation-delay: 0.6s; }
.service-card:nth-child(5) .service-icon { animation-delay: 0.8s; }
.service-card:nth-child(6) .service-icon { animation-delay: 1s; }

.service-card h3 {
    color: #333333;
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #20b2aa;
}

.service-card p {
    color: #666666;
    line-height: 1.3;
    font-size: 0.7rem;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #333;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sağlık İpuçları */
.health-tips {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.health-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #40E0D0;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Mevsimsel Sağlık */
.seasonal-health {
    padding: 80px 0;
    background: white;
}

.seasonal-health h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.seasonal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.season-card {
    padding: 40px;
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
}

.season-card.winter {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.season-card.summer {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
}

.season-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.season-card ul {
    list-style: none;
    padding: 0;
}

.season-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.season-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

/* Yaş Grupları */
.age-groups {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.age-groups h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.age-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.age-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.age-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.age-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.age-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.age-content li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.age-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
}

/* Acil Durum Bilgileri */
.emergency-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.emergency-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.emergency-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #DC143C;
}

.emergency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.emergency-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.emergency-number {
    font-size: 2rem;
    font-weight: 700;
    color: #DC143C;
    margin: 0;
}


/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-column h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
        padding-left: 25px;
    }
    
    .service-column h2::before {
        width: 3px;
        height: 35px;
    }
    
    .service-column h3 {
        font-size: 1rem;
    }
    
    .service-list li {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .service-list li::before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-right: 12px;
    }
    
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-text {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .mission-main {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .mission-signature {
        font-size: 1rem;
        padding-top: 15px;
    }
    
    .patient-rights-section {
        padding: 80px 0;
    }
    
    .patient-rights-content h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .rights-intro {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .rights-intro p {
        font-size: 1.1rem;
    }
    
    .rights-section, .responsibilities-section {
        padding: 35px 25px;
        margin-bottom: 30px;
        border-radius: 20px;
    }
    
    .patient-rights-content h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .patient-rights-content h4 {
        font-size: 1.2rem;
    }
    
    .patient-rights-content h5 {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .rights-list li {
        padding: 20px;
        margin-left: 20px;
    }
    
    .rights-list li::before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        left: -12px;
    }
    
    .responsibility-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .responsibility-item li {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .services-overview-section {
        padding: 25px 0;
    }
    
    .services-overview-content h2 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .services-subtitle {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .services-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-cards-container {
        height: auto;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 0;
        height: auto;
    }
    
    .service-card {
        height: auto;
        min-height: 120px;
    }
    
    .video-container {
        max-width: 100%;
        position: static;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .service-card {
        padding: 8px;
        border-radius: 3px;
    }
    
    .service-icon {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .service-card h3 {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
    
    .service-card p {
        font-size: 0.65rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet boyutu için */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-layout {
        flex-direction: column;
        gap: 25px;
    }
    
    .services-cards-container {
        height: auto;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        height: auto;
    }
    
    .service-card {
        height: auto;
        min-height: 140px;
    }
    
    .video-container {
        max-width: 100%;
        position: static;
    }
    
    .video-container iframe {
        height: 280px;
    }
    
    .service-card {
        padding: 8px;
    }
    
    .service-icon {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .service-card h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .service-card p {
        font-size: 0.7rem;
    }
    
    .seasonal-content {
        grid-template-columns: 1fr;
    }
    
    .age-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 8px 6px;
    text-align: center;
    border: none;
    font-size: 0.8rem;
    line-height: 1.4;
}

.schedule-table td:first-child {
    font-weight: 600;
    color: #333;
    background-color: #f8f9fa;
}

.schedule-table td:nth-child(2),
.schedule-table td:nth-child(3) {
    color: #40E0D0;
    font-weight: 500;
}

.schedule-table td:last-child {
    color: #666;
    font-size: 0.9rem;
    text-align: left;
    padding-left: 10px;
}

/* Hizmet Bilgileri */
.service-info {
    margin-top: 50px;
}

.service-info h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #DC143C);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #DC143C;
}

.info-card h3 {
    color: #40E0D0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Tasarım - Aile Hekimleri */
@media (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .doctor-card {
        margin: 0;
        min-height: 350px;
        flex-direction: column;
        width: 100%;
    }
    
    .doctor-avatar {
        width: 100%;
        padding: 25px;
    }
    
    .doctor-avatar {
        padding: 25px;
    }
    
    .avatar-placeholder {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-info h3 {
        font-size: 1.3rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .doctors-intro {
        padding: 20px;
    }
    
    .doctors-intro p {
        font-size: 1rem;
    }
    
    .schedule-table {
        font-size: 0.75rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 6px 3px;
    }
    
    .schedule-table th {
        font-size: 0.7rem;
    }
    
    .schedule-table td {
        font-size: 0.7rem;
    }
    
    .schedule-table td:last-child {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .doctor-card {
        margin: 0;
        min-height: 300px;
        flex-direction: column;
        width: 100%;
    }
    
    .doctor-avatar {
        width: 100%;
        padding: 20px;
    }
    
    .doctor-avatar {
        padding: 20px;
    }
    
    .avatar-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .doctor-info {
        padding: 15px;
    }
    
    .doctor-info h3 {
        font-size: 1.2rem;
    }
    
    .doctor-details p {
        font-size: 0.85rem;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .doctors-intro {
        padding: 15px;
    }
    
    .doctors-intro p {
        font-size: 0.95rem;
    }
    
    .schedule-table {
        font-size: 0.7rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 5px 2px;
    }
    
    .schedule-table th {
        font-size: 0.65rem;
    }
    
    .schedule-table td {
        font-size: 0.65rem;
    }
    
    .schedule-table td:last-child {
        font-size: 0.6rem;
        padding-left: 4px;
    }
}

/* Aile Sağlığı Çalışanları Sayfası Stilleri */
.staff-content {
    max-width: 1200px;
    margin: 0 auto;
}

.staff-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
}

.staff-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.staff-section {
    margin-bottom: 50px;
}

.staff-section h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.staff-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #DC143C);
    border-radius: 2px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.staff-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: none;
    border: 2px solid transparent;
}

.staff-card:hover {
    transform: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: transparent !important;
    border: 2px solid transparent !important;
    outline: none !important;
    background: #ffffff !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    rotate: 0deg !important;
    translate: 0 0 !important;
}

.staff-avatar {
    background: transparent !important;
    padding: 0 !important;
    text-align: center;
    position: static;
}

.staff-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.staff-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 16px;
}

.staff-info h3 {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: left;
}

.staff-title {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 4px;
}

.staff-unit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.3;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 4px 8px;
    background: #f8f9fa;
    display: inline-block;
}

.staff-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.staff-details p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.staff-details p:last-child {
    margin-bottom: 0;
}

.staff-details strong {
    color: #20B2AA;
    font-weight: 600;
}

/* Responsive Tasarım - Aile Sağlığı Çalışanları */
@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .staff-card {
        margin: 0 10px;
    }
    
    .staff-avatar {
        padding: 25px;
    }
    
    .staff-info {
        padding: 20px;
    }
    
    .staff-info h3 {
        font-size: 1.3rem;
    }
    
    .staff-intro {
        padding: 20px;
    }
    
    .staff-intro p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .staff-card {
        margin: 0 5px;
    }
    
    .staff-avatar {
        padding: 20px;
    }
    
    .staff-info {
        padding: 15px;
    }
    
    .staff-info h3 {
        font-size: 1.2rem;
    }
    
    .staff-details p {
        font-size: 0.85rem;
    }
    
    .staff-intro {
        padding: 15px;
    }
    
    .staff-intro p {
        font-size: 0.95rem;
    }
}

/* Yardımcı Personel Sayfası Stilleri */
.personnel-content {
    max-width: 1200px;
    margin: 0 auto;
}

.personnel-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
}

.personnel-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.personnel-section {
    margin-bottom: 50px;
}

.personnel-section h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.personnel-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.personnel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.personnel-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: none;
    border: 2px solid transparent;
}

.personnel-card:hover {
    transform: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid transparent !important;
    border-color: transparent !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    cursor: default !important;
}

.personnel-avatar {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    padding: 30px;
    text-align: center;
    position: relative;
}

.personnel-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.personnel-info {
    padding: 25px;
}

.personnel-info h3 {
    color: #40E0D0;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.personnel-title {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.personnel-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.personnel-details p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.personnel-details p:last-child {
    margin-bottom: 0;
}

.personnel-details strong {
    color: #40E0D0;
    font-weight: 600;
}

/* Responsive Tasarım - Yardımcı Personel */
@media (max-width: 768px) {
    .personnel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .personnel-card {
        margin: 0 10px;
    }
    
    .personnel-avatar {
        padding: 25px;
    }
    
    .personnel-info {
        padding: 20px;
    }
    
    .personnel-info h3 {
        font-size: 1.3rem;
    }
    
    .personnel-intro {
        padding: 20px;
    }
    
    .personnel-intro p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .personnel-card {
        margin: 0 5px;
    }
    
    .personnel-avatar {
        padding: 20px;
    }
    
    .personnel-info {
        padding: 15px;
    }
    
    .personnel-info h3 {
        font-size: 1.2rem;
    }
    
    .personnel-details p {
        font-size: 0.85rem;
    }
    
    .personnel-intro {
        padding: 15px;
    }
    
    .personnel-intro p {
        font-size: 0.95rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #40E0D0;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.contact-section {
    margin-bottom: 50px;
}

.contact-section h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0;
    box-shadow: none;
    padding: 16px;
    transition: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-card:hover { transform: none; box-shadow: none; border-color: #e9ecef; }

.contact-card.emergency {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.contact-card.emergency:hover {
    border-color: #ff6b6b;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #2c3e50;
}

.contact-card.emergency .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card.emergency .contact-info h3 {
    color: white;
}

.contact-info p {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 6px;
}

.contact-card.emergency .contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #40E0D0;
    font-weight: 600;
}

.contact-card.emergency .contact-info strong {
    color: white;
}

/* Ulaşım Bilgileri */
.transport-info {
    margin-bottom: 50px;
}

.transport-info h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.transport-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.transport-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #40E0D0;
}

.transport-card h3 {
    color: #40E0D0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.transport-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* İletişim Notları */
.contact-notes {
    margin-bottom: 50px;
}

.contact-notes h2 {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-notes h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.note-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #40E0D0;
}

.note-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.note-card h3 {
    color: #40E0D0;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.note-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Tasarım - İletişim */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-intro {
        padding: 20px;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .transport-card {
        padding: 20px;
    }
    
    .transport-card h3 {
        font-size: 1.1rem;
    }
    
    .transport-card p {
        font-size: 0.9rem;
    }
    
    .note-card {
        padding: 15px;
    }
    
    .note-card h3 {
        font-size: 1rem;
    }
    
    .note-card p {
        font-size: 0.85rem;
    }
    
    .contact-intro {
        padding: 15px;
    }
    
    .contact-intro p {
        font-size: 0.95rem;
    }
}

/* Sağlık Bakanlığı Tarzı Galeri Stilleri */
.ministry-gallery {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    margin-bottom: 0;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background: #ffffff;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(128, 128, 128, 0.8);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    outline: none;
}

.prev-btn:focus, .next-btn:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(169, 169, 169, 0.9);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Hızlı Erişim Kartları - Galeri İçinde */
.gallery-cards {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    z-index: 10;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.access-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 6px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 0;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: none;
    backdrop-filter: blur(10px);
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
}

.access-card:focus {
    outline: none;
}

.access-card:last-child {
    border-right: none;
}

.access-card:hover {
    background: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
}

.card-content h3 {
    font-size: 0.7rem;
    font-weight: 400;
    margin: 0;
    color: white;
    position: relative;
    display: inline-block;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.access-card:hover .card-content h3::after {
    width: 100%;
}

/* Responsive Galeri */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    
    .gallery-cards {
        bottom: 15px;
        max-width: 700px;
    }
    
    .access-card:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        height: 45vh;
    }
    
    .slide-overlay {
        padding: 30px 20px 20px;
    }
    
    .slide-overlay h2 {
        font-size: 1.8rem;
    }
    
    .slide-overlay p {
        font-size: 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-controls {
        padding: 0 15px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .gallery-cards {
        bottom: 10px;
        padding: 0 15px;
        max-width: 500px;
    }
    
    .access-card {
        padding: 10px 4px;
    }
    
    .access-card:nth-child(2n) {
        border-right: none;
    }
    
    .card-content h3 {
        font-size: 0.6rem;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        height: 40vh;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .gallery-cards {
        bottom: 8px;
        padding: 0 10px;
        max-width: 420px;
    }
    
    .access-card {
        padding: 9px 3px;
    }
    
    .access-card:nth-child(2n) {
        border-right: none;
    }
    
    .card-content h3 {
        font-size: 0.55rem;
        font-weight: 400;
    }
}


/* Hızlı Erişim Bölümü */
.quick-access-section {
    background: #ffffff;
    padding: 30px 0;
}

.quick-access-section h2 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.quick-access-section h2::after {
    display: none !important;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-access-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 12px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333333;
    transition: all 0.2s ease;
}

.quick-access-item:hover {
    background: #ffffff;
    text-decoration: none;
    color: #666666;
}

.quick-access-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.quick-access-arrow {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666666;
    margin-left: 10px;
}

/* Responsive Hızlı Erişim */
@media (max-width: 768px) {
    .quick-access-section {
        padding: 25px 0;
    }
    
    .quick-access-section h2 {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
        max-width: 100%;
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .quick-access-item {
        padding: 12px 10px;
    }
    
    .quick-access-text {
        font-size: 0.8rem;
    }
    
    .quick-access-arrow {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .quick-access-section h2 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-bottom: 6px;
        max-width: 100%;
    }
    
    .quick-access-item {
        padding: 10px 8px;
    }
    
    .quick-access-text {
        font-size: 0.75rem;
    }
    
    .quick-access-arrow {
        font-size: 1rem;
    }
    
    .emergency-calls-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 300px;
    }
    
    .emergency-call-item {
        padding: 20px 12px;
        min-height: 90px;
    }
    
    .emergency-call-number {
        font-size: 1.1rem;
    }
    
    .emergency-call-title {
        font-size: 0.85rem;
    }
    
    .emergency-call-action {
        font-size: 0.7rem;
        padding: 5px 10px;
        margin-top: 6px;
    }
}

/* Çalışma Saatleri ve Hizmet Standartları Bölümü */
.info-sections {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: transparent;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.info-card:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.8;
}

.info-card::before {
    display: none;
}

.info-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
    display: block;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.info-card p {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .info-sections {
        padding: 20px 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .info-card {
        padding: 12px;
        gap: 10px;
    }
    
    .info-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .info-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
}

/* ASM Rehberi Sayfası Stilleri */
.asm-guide-section {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 30px 0;
}

.guide-section {
    border-bottom: 1px solid #e9ecef;
    padding: 40px;
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-section h2 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #40E0D0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-content {
    line-height: 1.8;
    color: #333;
}

.guide-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.guide-content strong {
    color: #40E0D0;
    font-weight: 600;
}

.guide-wish {
    text-align: center;
    font-style: italic;
    color: #40E0D0;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 35px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guide-list {
    padding-left: 20px;
    margin: 20px 0;
}

.guide-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.policy-quote {
    background: #ffffff;
    border: none;
    padding: 40px;
    margin: 25px 0;
    border-radius: 0;
    font-style: normal;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #40E0D0;
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.policy-quote:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.policy-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #40E0D0, #20B2AA, #40E0D0);
}

.policy-quote::after {
    content: '💙';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

/* ASM Rehberi Responsive */
@media (max-width: 768px) {
    .guide-section {
        padding: 25px 20px;
    }
    
    .guide-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .guide-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .guide-list li {
        font-size: 1rem;
    }
    
    .policy-quote {
        font-size: 1.1rem;
        padding: 30px 20px;
        transform: none;
        border-left: 6px solid #40E0D0;
    }
    
    .policy-quote:hover {
        transform: none;
    }
    
    .policy-quote::after {
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
    
    .guide-wish {
        font-size: 1.1rem;
        padding: 15px;
    }
}

/* Öncelikli Hastalar Sayfası - Table Tasarımı */
.priority-content {
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.intro-card {
    background: #f8f9fa;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px;
}

.intro-icon {
    display: none;
}

.intro-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.priority-grid {
    display: block;
    margin: 30px 0;
}

.priority-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.priority-table thead {
    background: #28a745;
    color: white;
}

.priority-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
}

.priority-table th:first-child {
    text-align: center;
    width: 60px;
}

.priority-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.priority-table tbody tr:hover {
    background: #f8f9fa;
}

.priority-table tbody tr:last-child {
    border-bottom: none;
}

.priority-table td {
    padding: 15px;
    vertical-align: top;
    border: none;
}

.priority-table td:first-child {
    text-align: center;
    font-weight: 600;
    background: #e9ecef;
    color: #495057;
    width: 60px;
}

.priority-table td:nth-child(2) {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.priority-table td:nth-child(3) {
    color: #666;
    line-height: 1.5;
}

.notice-card {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
    border-left: 4px solid #17a2b8;
}

.notice-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #17a2b8;
}

.notice-card h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0c5460;
}

.notice-card p {
    font-size: 1rem;
    line-height: 1.4;
    color: #0c5460;
    margin: 0;
}

/* Öncelikli Hastalar Responsive */
@media (max-width: 768px) {
    .priority-content {
        margin: 20px 10px;
    }
    
    .intro-card {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .intro-card h2 {
        font-size: 1.5rem;
    }
    
    .intro-card p {
        font-size: 1rem;
    }
    
    .priority-table {
        font-size: 0.9rem;
    }
    
    .priority-table th,
    .priority-table td {
        padding: 10px 8px;
    }
    
    .priority-table th:first-child,
    .priority-table td:first-child {
        width: 40px;
    }
    
    .priority-table td:nth-child(2) {
        font-size: 1rem;
    }
    
    .priority-table td:nth-child(3) {
        font-size: 0.85rem;
    }
    
    .notice-card {
        padding: 15px;
        margin-top: 25px;
    }
    
    .notice-card h2 {
        font-size: 1.2rem;
    }
    
    .notice-card p {
        font-size: 0.9rem;
    }
}

/* Çalışma Saatleri Sayfası Stilleri */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.page-header h1 {
    color: #1a1a1a;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    font-family: 'Georgia', serif;
}

.page-header h1::before,
.page-header h1::after {
    content: '◆';
    color: #666;
    font-size: 1.5rem;
    margin: 0 20px;
    vertical-align: middle;
}

.page-header p {
    color: #444;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
    font-weight: 400;
}

.working-hours-section {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.doctor-schedule {
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    overflow: hidden;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.doctor-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #666;
}

.doctor-schedule:hover {
    border-color: #666;
    box-shadow: 0 0 20px rgba(102, 102, 102, 0.2);
}

.doctor-schedule h2 {
    background: #d1ecf1;
    color: #1a1a1a;
    padding: 30px 40px;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    font-family: 'Georgia', serif;
}

.doctor-schedule h2::before {
    content: attr(data-prefix);
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.schedule-table-container {
    overflow-x: auto;
    padding: 0;
    background: white;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

.schedule-table thead {
    background: #d1ecf1;
}

.schedule-table th {
    padding: 22px 20px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #666;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.schedule-table th:first-child {
    text-align: left;
    padding-left: 40px;
}

.schedule-table td {
    padding: 20px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #2c3e50;
    vertical-align: middle;
    transition: all 0.2s ease;
    font-size: 1.05rem;
}

.schedule-table td:first-child {
    text-align: left;
    padding-left: 40px;
    font-weight: 700;
    color: #1a1a1a;
    background: #e1f5fe;
    width: 140px;
    font-size: 1.1rem;
}

.schedule-table tbody tr {
    transition: all 0.2s ease;
}

.schedule-table tbody tr:hover {
    background: #b3e5fc;
}

.schedule-table tbody tr:hover td {
    color: #1a1a1a;
}

.schedule-table td:nth-child(2),
.schedule-table td:nth-child(3) {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #444;
    font-size: 1.1rem;
}

.schedule-table td:last-child {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    background: #fff;
    text-align: left;
    padding-left: 20px;
    font-weight: 500;
}

.schedule-table td:last-child:not(:empty)::before {
    content: '';
    color: #444;
    font-weight: bold;
    margin-right: 5px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .page-header h1::before,
    .page-header h1::after {
        font-size: 1.3rem;
        margin: 0 15px;
    }
    
    .page-header p {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .working-hours-section {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .doctor-schedule h2 {
        padding: 25px 30px;
        font-size: 1.4rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 18px 15px;
        font-size: 1rem;
    }
    
    .schedule-table th {
        font-size: 0.9rem;
        padding: 20px 15px;
    }
    
    .schedule-table th:first-child,
    .schedule-table td:first-child {
        padding-left: 30px;
    }
    
    .schedule-table td:first-child {
        width: 120px;
        font-size: 1.05rem;
    }
    
    .schedule-table td:last-child {
        font-size: 0.9rem;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .page-header h1::before,
    .page-header h1::after {
        font-size: 1.1rem;
        margin: 0 10px;
    }
    
    .page-header p {
        font-size: 1rem;
        max-width: 350px;
    }
    
    .doctor-schedule h2 {
        padding: 20px 25px;
        font-size: 1.3rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
    
    .schedule-table th {
        font-size: 0.85rem;
        padding: 18px 10px;
    }
    
    .schedule-table th:first-child,
    .schedule-table td:first-child {
        padding-left: 25px;
    }
    
    .schedule-table td:first-child {
        width: 100px;
        font-size: 1rem;
    }
    
    .schedule-table td:last-child {
        font-size: 0.85rem;
        padding-left: 10px;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-intro {
    margin-bottom: 40px;
}

.about-description {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #40E0D0;
}

.about-description p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.intro-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.intro-card h2 {
    color: #40E0D0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.intro-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.services-section {
    margin-bottom: 40px;
}

.services-section h2 {
    color: #40E0D0;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #40E0D0;
}

.service-number {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-text {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.free-service-notice {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
}

.free-service-notice h2 {
    color: #40E0D0;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.free-service-notice p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hakkımızda Sayfası Responsive Tasarım */
@media (max-width: 768px) {
    .about-content {
        padding: 0 15px;
    }
    
    .about-description {
        padding: 20px;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .intro-card {
        padding: 25px;
    }
    
    .intro-card h2 {
        font-size: 1.5rem;
    }
    
    .intro-card p {
        font-size: 1rem;
    }
    
    .services-section h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 20px;
        gap: 15px;
    }
    
    .service-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-text {
        font-size: 0.95rem;
    }
    
    .free-service-notice {
        padding: 20px;
    }
    
    .free-service-notice h2 {
        font-size: 1.3rem;
    }
    
    .free-service-notice p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-description {
        padding: 15px;
    }
    
    .about-description p {
        font-size: 0.95rem;
    }
    
    .intro-card {
        padding: 20px;
    }
    
    .intro-card h2 {
        font-size: 1.3rem;
    }
    
    .intro-card p {
        font-size: 0.95rem;
    }
    
    .services-section h2 {
        font-size: 1.3rem;
    }
    
    .service-item {
        padding: 15px;
        gap: 12px;
    }
    
    .service-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }
    
    .free-service-notice {
        padding: 15px;
    }
    
    .free-service-notice h2 {
        font-size: 1.1rem;
    }
    
    .free-service-notice p {
        font-size: 0.95rem;
    }
}

