.service-card {
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 0.5rem;
    background: white;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-service {
    border-top: 4px solid #D4AF37;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.primary-service:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.secondary-service {
    text-align: center;
    padding: 1.5rem;
    background: white;
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.service-icon {
    font-size: 1.5rem;
}

.primary-service .service-icon-wrapper {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    width: 4rem;
    height: 4rem;
}

.primary-service .service-icon {
    font-size: 2rem;
}

.secondary-service:hover {
    border-color: #D4AF37;
}
