/* Detail Service Styles */
.detail-service {
    padding: 80px 0;
   
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-header h1 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-header p {
    font-family: 'Gilroy', sans-serif;
    color: #5a6c7d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    
    border-radius: 12px;
    padding: 30px;
 
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.15);
}

.service-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eef2f7;
}

.service-icon {
    color: #3498db;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 0;
}

.service-card p {
    font-family: 'Gilroy', sans-serif;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.service-highlight {
    color: #3498db;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-service {
        padding: 50px 0;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-header h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 1.6rem;
    }
    
    .service-header-row {
        gap: 12px;
    }
}