/* Calibri font for headings under main banner */
h2, h3, h4, h5, h6 {
    font-family: 'Calibri', sans-serif !important;
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.service-card h4 {
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    color: #2c3e50 !important;
    letter-spacing: -0.02em;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.service-card p {
    text-align: center !important;
    color: #495057 !important;
}

.lead.text-muted {
    color: #495057 !important;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
}

.methodology-item {
    padding: 2rem 1rem;
}

.process-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #2760d8;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.process-step h5 {
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.process-step p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.text-sm {
    font-size: 0.875rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .methodology-item {
        padding: 1.5rem 0.5rem;
    }
}