.service-hero {
    background: linear-gradient(135deg, #1e3a52 0%, #2c5f8d 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;
}

.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;
}

.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: #ff6b35;
    font-weight: bold;
}

.cta-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
    margin: 10px;
}

.btn-secondary:hover {
    background: #f44336;
}
