/* ============================================
   REHBERLİK VE SAĞLIK SAYFASI STİLLERİ
   Sadece bu sayfaya özel stiller
   ============================================ */

/* Hero Section */
/* Page hero stilleri components.css dosyasından kullanılıyor */

/* Main Content Wrapper */
.main-content-wrapper {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #f8fafc;
}

.dual-section-container {
    margin-bottom: 4rem;
}

/* Service Section */
.service-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.service-section:hover {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.service-sections-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-subsection {
    display: flex;
    flex-direction: column;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f1f5f9;
    border-left-color: #4338ca;
    transform: translateX(4px);
}

.service-item.rehberlik:hover {
    border-left-color: #4338ca;
}

.service-item.saglik:hover {
    border-left-color: #10b981;
}

.service-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.service-item-icon.rehberlik {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
}

.service-item-icon.saglik {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.service-item-content p {
    color: rgba(15, 23, 42, 0.65);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .service-sections-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 2rem;
    }
}

