.service-hero {
    background: linear-gradient(135deg, #2563eb 0%, #4a9eff 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.service-content {
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #2563eb;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-item-card h3 {
    color: #1e3a52;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.service-item-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-item-card ul {
    list-style: none;
    padding: 0;
}

.service-item-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-item-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}
