/* Ayrıcalıklar Bölümü */
.ayricaliklar-section {
    padding: 80px 20px;
    background: #0F172A;
}

.ayricaliklar-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ayricaliklar-baslik {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

.ayricaliklar-kelime-1 {
    color: #3B82F6;
}

.ayricaliklar-kelime-2 {
    color: #F8FAFC;
}

.ayricaliklar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ayricalik-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    background: rgba(59, 130, 246, 0.1);
}

.ayricalik-item:hover {
    transform: translateY(-10px);
    background: rgba(59, 130, 246, 0.2);
}

.ayricalik-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ayricalik-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.ayricalik-text {
    font-size: 18px;
    font-weight: 600;
    color: #F8FAFC;
}

/* Responsive */
@media (max-width: 968px) {
    .ayricaliklar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .ayricaliklar-grid {
        grid-template-columns: 1fr;
    }
    
    .ayricaliklar-baslik {
        font-size: 28px;
    }
    
    .ayricalik-icon {
        font-size: 50px;
    }
}

