/* About Sayfası Özel Stilleri */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Kart Stilleri */
.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Özellik Kutuları */
.feature-box {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    background: white;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Yetki Belgesi Bölümü */
.certificate-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
}

.certificate-image {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Liste Stilleri */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* İkon Renkleri */
.icon-primary {
    color: #007bff;
}

.icon-success {
    color: #28a745;
}

.icon-warning {
    color: #ffc107;
}

.icon-info {
    color: #17a2b8;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .certificate-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .feature-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}