.service-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
}
.service-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.keyword {
    background: #fff3cd;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.feature-list {
    background: #f8f9fa;
    border-left: 4px solid #FF6B35;
}
.success-box {
    background: #d1edff;
    border-left: 4px solid #007bff;
}
.warning-box {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
}
.step-card {
    transition: transform 0.3s ease;
    border-left: 4px solid #FF6B35;
}
.step-card:hover {
    transform: translateY(-5px);
}
.code-combination {
    background: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    font-family: monospace;
    margin: 5px 0;
    text-align: center;
    font-weight: bold;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.benefit-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #FF6B35;
}
.process-timeline {
    border-left: 3px solid #FF6B35;
    margin-left: 20px;
    padding-left: 20px;
}
.timeline-item {
    position: relative;
    margin-bottom: 25px;
}
.timeline-item:before {
    content: '';
    position: absolute;
    left: -28px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF6B35;
}
